Blog

Writing

Life, tech, and everything in-between.

Stop Building Agent Demos. Start Building Agentic Software.

10 minAI

Agentic AI is in its demo phase, where a chain of prompts looks magical in a notebook but falls apart in production. The discipline that separates the two is knowing where reasoning belongs to the model and where reliability belongs to ordinary code.

Scaling and Cost Optimization for LLM Agentic Systems

7 minAI

Multi-agent architectures amplify both capability and error. Google DeepMind measured the amplification across 180 configurations. Anthropic reports 90 percent cost reductions from a planner-plus-workers split. Both results inform how to scale production agents.

Harness Design: Planner, Generator, Evaluator for Production LLM Agents

8 minAI

A harness is the set of components around a language model that turn a research prototype into a production system. Anthropic's three-agent architecture (planner, generator, evaluator) mirrors the GAN discriminator-generator dynamic and survives long-running applications.

One Word, Three Jobs: What "Agent" Means at Lunch and in Production

10 minAI

The lunch-table conversation about AI agents and the production-engineering conversation about AI agents are both right. They are talking about three different things and calling all of them "agent."

The Tool-Calling Agent Loop: ReAct as It Actually Ships

7 minAI

The 2022 ReAct paper parsed thought-action-observation from free text. Production agents today use native tool-calling, a step budget, input and output guardrails, and explicit handoff handling. The simple loop earns its hardening.