JNThe small context packet idea is underrated. I’ve seen agents get worse just because we keep feeding them everything instead of what they actually need.Comment·Article·14h ago·Making AI Agents Safe and Fast
JNThe three-layer split makes a lot of sense. I’ve hit this with agents too — session notes pile up fast, but the decisions that matter are usually the “why”.Comment·Article·14h ago·Keep the Why vs. Claude Code Auto Memory vs. MemoryCustodian vs. AgentsRoom
JNThe shared table example is exactly where AI feels useful to me. The code can look fine while the real problem is hiding in another service.Comment·Article·1d ago·How AI Saved Me From a Cross-Service Code Review Blind Spot
JNThe session-to-user binding bit stood out to me. It’s easy to assume the sandbox solves everything, but identity can still be the weak link.Comment·Article·2d ago·The current state of security for autonomous agents in the cloud
JNThe batch vs interactive split is probably the most useful takeaway here. For background jobs, I’ll happily trade a bit more time for a much lower bill.Comment·Article·4d ago·DeepSeek vs Claude Opus: LLM Cost & Latency Trade-offs
JNThe 91%+ input cost really stood out to me. I've seen the same thing with agent tools where the context quietly costs more than the actual answer.Comment·Article·6d ago·1·APEX AI Agents: Comparing Cost, Quality, and Models
JNThe part about RAG being a search problem, not just a vector DB problem, hits home. Exact IDs and dates can matter more than semantic similarity. Learned this the hard way.Comment·Article·Sep 18·RAG Is the Easy Part: Designing AI Systems Around Messy Enterprise Data
JNThe HTTP 200 point is the bit that gets missed. I've seen AI tools look healthy on paper while the actual output was quietly getting worse.Comment·Article·Sep 18·1·Building an AI Circuit Breaker in .NET
JNThe part about permissions being enforced outside the prompt is key. If the agent can't call the tool, there's nothing to argue about.Comment·Article·Sep 16·AI Coding Tip 036 - Grant AI the Least Privilege Possible
JNI like the tradeoff here. For agent mail, owning the inbox feels way better than adding another hosted service to trust. Cloudflare Workers is a pretty natural fit for this too.Comment·Article·Sep 15·I built an open-source AgentMail alternative on Cloudflare Workers