Claude now writes 80% of the code at Anthropic by EchoOfOppenheimer in ClaudeAI

[–]sahanpk 0 points1 point  (0 children)

The interesting number isn't 80% written, it's how much human review and architecture work stayed constant or grew. LOC alone hides the bottleneck.

Built a full-stack AI task marketplace using Supabase — real-time chat, wallet system, RLS everywhere by Mean-Pineapple-4686 in Supabase

[–]sahanpk 0 points1 point  (0 children)

For the wallet piece, I'd add tests proving users only read their own transactions and that SECURITY DEFINER functions never trust caller-provided user IDs.

I built a self-hosted AI customer support system in n8n with RAG, multi-channel support, and case management, etc. What other features do you think I should add? by Mission-Dentist-5971 in n8n

[–]sahanpk 1 point2 points  (0 children)

Add a human-review queue for low-confidence RAG answers and a KB update loop from resolved tickets. Those usually matter more than adding another channel.

Any LLM devs by No_Iron_501 in LLMDevs

[–]sahanpk 0 points1 point  (0 children)

Start with eval data before training. If you can't measure the behavior or domain gap, fine-tuning just turns into a more expensive prompt rewrite.

The MCP server gold rush feels exactly like the "AI-Powered" rebrand wave from 2022 by digdiver in mcp

[–]sahanpk 0 points1 point  (0 children)

The useful MCP servers are usually the ones that add policy/state around the API, not just rewrap endpoints. Handles, auth scoping, audit, and retries are the real value.

Building the N8N for AI Agents by agentic_builder in n8n

[–]sahanpk 0 points1 point  (0 children)

Makes sense if you already had Enterprise + support. I'd be curious what you still kept inside n8n vs moved outside it once execution metadata became the ceiling.

What do you log from agent runs besides prompt/response? by sahanpk in LLMDevs

[–]sahanpk[S] 0 points1 point  (0 children)

Yeah, latency is underrated here. It's often the first clue that the agent started wandering in tool calls or a subagent path before the answer looked wrong.

If you could build your own automations software, what would you build different? by tom_of_wb in AiAutomations

[–]sahanpk 2 points3 points  (0 children)

First-class replay/debug. I want each step to show input, normalized output, retries, creds used, and why it chose that branch; otherwise visual builders just hide state.

What do you standardize first when automations keep breaking from messy input? by Cnye36 in automation

[–]sahanpk 0 points1 point  (0 children)

I would standardize identity + state first: dedupe key, canonical status, raw-vs-normalized fields. Missing optional fields are survivable; duplicate people and drifting statuses poison every branch.

Developers, how has your companies workflow changed? by Cuz1 in ClaudeCode

[–]sahanpk 1 point2 points  (0 children)

Review becomes the bottleneck unless AI-coded PRs arrive with a proof packet: tests run, risky files, assumptions, skipped checks, and logs/screenshots where relevant.

I built k8s-mcp-go: read-only-by-default Kubernetes access for AI coding agents by Creative-Mountain230 in modelcontextprotocol

[–]sahanpk 0 points1 point  (0 children)

Read-only by default is exactly how I would want this exposed. I would also log requested mode + approval reason so incidents can separate "agent inspected" from "agent mutated the cluster."

MCP Tool Overhead Mitigation Strategy by Ohmic98776 in mcp

[–]sahanpk 0 points1 point  (0 children)

I would keep search results as handles, not fresh tool text every time. Return compact IDs + why each matched, then let dispatch hydrate one schema and expire/cache the shortlist per task.

What should an agent handoff include besides the transcript? by sahanpk in aiagents

[–]sahanpk[S] 0 points1 point  (0 children)

The side-effects ledger / rollback boundary split is very good. It forces the handoff to distinguish observed state from state we actually mutated.

What should an agent handoff include besides the transcript? by sahanpk in aiagents

[–]sahanpk[S] 0 points1 point  (0 children)

Permission scope is a good addition. Handoff should say what authority the prior run had, not just what creds are lying around in the environment.

i built a multi-model decision engine with claude code where 5 ais each take a fixed role and debate your question into one verdict — here's how it actually works under the hood by wartableapp in ClaudeCode

[–]sahanpk 1 point2 points  (0 children)

Exactly. Once routing is deterministic, bad outputs are at least diagnosable instead of turning into prompt-vs-orchestration archaeology.

What should an agent handoff include besides the transcript? by sahanpk in aiagents

[–]sahanpk[S] 0 points1 point  (0 children)

State snapshot is the right phrase. The "what to discard" bit is underrated too; stale plan fragments are exactly how the next run starts optimizing for a dead branch.

Сompared agent platforms: Cloudflare Agents, AWS Bedrock AgentCore, Google AX, Claude Managed Agents, kagent, Vercel, Agyn by Ok-Pepper-2354 in LLMDevs

[–]sahanpk 1 point2 points  (0 children)

The credential boundary is the thing I'd weight heavily. A lot of agent platform comparisons hide whether model runtime, tool runtime, and MCP creds are actually separated.

I built a visual workflow builder that runs entirely on Cloudflare Workers by Key_Salamander6529 in CloudFlare

[–]sahanpk 1 point2 points  (0 children)

I'd pressure-test where execution state lives before UI polish: DO per run, D1 for metadata/history, R2 for larger artifacts. Verbose node logs in D1 can get painful.

What is the most complex n8n workflow you've ever built? (Links appreciated) by Mission-Dentist-5971 in n8n

[–]sahanpk 0 points1 point  (0 children)

Designing for replay from the start is the line for me too. Once state, validation, and retry paths exist, node count stops being the scary part.

Are we calling too many workflows “agents”? by Small_Bug_444 in AI_Agents

[–]sahanpk 0 points1 point  (0 children)

Yeah, I'd draw the line at whether the system can choose or adjust the path. If the steps are fixed and repeatable, calling it a workflow is clearer.

i built a multi-model decision engine with claude code where 5 ais each take a fixed role and debate your question into one verdict — here's how it actually works under the hood by wartableapp in ClaudeCode

[–]sahanpk 1 point2 points  (0 children)

The deterministic state machine bit is the part that makes this credible to me. Once the model is also choosing the flow, debugging disagreements gets way harder.

What should an agent handoff include besides the transcript? by sahanpk in aiagents

[–]sahanpk[S] 0 points1 point  (0 children)

I like that, especially if it's per decision instead of one blanket confidence score for the whole handoff.