Agentic Coding

COMPLETED March 12, 2026
Summary

Briefing: Agentic Coding Purpose: I'm a software engineer who's building with AI coding agents daily. Tell me what's actually working and what isn't. Looking for practical tips I can apply.

Key Insights

Emerging Patterns

Dissenting Views

  • The Illusion of "100x" Productivity. Consensus narratives highlight massive productivity gains, citing engineers shipping 10 to 30 pull requests a day and operating 30x faster than traditional developers. However, veteran practitioners argue these numbers are highly misleading. A deep dive into GitHub commit spikes reveals that much of this new output consists of disposable side projects, "slop forks" (reimplementing existing apps for fun), and experiments, rather than a true acceleration of complex, core business logic.
  • Consensus: The Org Chart Math Behind AI-Native Speed
  • Dissent: State of Agentic Coding #4 with Armin and Ben

Read & Act

What to read: - Uber: Leading engineering through an agentic shift - The Pragmatic Summit — Essential viewing for anyone managing agentic code at scale. Breaks down exactly how an enterprise builds infrastructure to handle the noise of AI-generated PRs and orchestrate async migrations. - 4 AI Labs Built the Same System Without Talking to Each Other (And Nobody's Discussing Why) — A concise breakdown of the "Planner-Worker-Judge" architecture. Critical for understanding why flat, single-agent scripts fail in production. - Stop accepting AI output that "looks right." The other 17% is everything and nobody is ready for it. — A vital perspective shift on evaluation. Explains how to build a compounding "taste" engine by formally encoding your rejections of AI output.

What to do: - Separate Planning Models from Execution Models. Stop using your most expensive models (like Opus or GPT-4o) for the entirety of a coding task. Use the frontier models to generate the technical spec and architectural plan, then hand the execution off to faster, cheaper models to manage quadratic token costs. - Move "Toil" out of the IDE. Stop using Cursor for migrations, dependency updates, and boilerplate tests. Shift these asynchronous, well-defined workloads to CLI agents running in remote tmux sessions so you can continue focused, synchronous feature work locally without breaking your context. - Implement a "Critic Engine" in your CI/CD. Do not let agents merge code based solely on green tests. Build an automated reviewer step that explicitly checks agent PRs against a library of your past "rejections" and domain-specific architectural constraints before it ever reaches a human reviewer.

← More from Agentic Coding