Anthropic wordmark on tan background
← All posts

Anthropic's 2026 report: engineers are shifting from writing code to orchestrating agents

"Software development is shifting from writing code to orchestrating agents that write code." That's the framing Anthropic leads with in its 2026 Agentic Coding Trends Report, and the report backs it up with a stat that's more useful than the headline itself: engineers now use AI in roughly 60% of their work, but report fully delegating only 0-20% of tasks without supervision. In other words, the shift isn't from coding to not-coding — it's from typing to reviewing, and the gap between those two is where most of the interesting problems live. I read through the report looking for what's real versus what's marketing, and here's what actually held up, trend by trend.

1. The development lifecycle itself is changing shape

The report calls this a "tectonic shift": tactical work — writing, debugging, maintaining code — moves to AI agents, while engineers spend more of their time on architecture and system design. Onboarding timelines reportedly collapse from weeks to hours in some organizations, which changes how teams staff projects dynamically. The concrete example that stood out: Augment Code helped an enterprise customer finish a 4-to-8-month project in two weeks. That's the kind of number that should make you ask "under what conditions," not just take at face value — but it's a useful upper bound for what's now possible.

2. Single agents are turning into coordinated teams

Instead of one agent doing everything in sequence, organizations are running multiple specialized agents in parallel under an orchestrator — each with its own context window and role. The report's example here is Fountain, which used hierarchical multi-agent orchestration to get 50% faster candidate screening, 40% quicker onboarding, and cut fulfillment-center staffing time from over a week to under 72 hours. The skill this demands — breaking a task down so separate agents can work on pieces of it without stepping on each other — is basically a new discipline, closer to distributed-systems design than prompt-writing.

3. Agents are running for hours, not minutes

This is the trend with the number that actually made me stop and re-read it: Rakuten used Claude Code to implement activation vector extraction inside vLLM — a 12.5-million-line codebase — in seven autonomous hours, with 99.9% numerical accuracy. That's not a toy benchmark; that's a real, large, unfamiliar codebase. The broader point is that task horizons are expanding from minutes to days or weeks of autonomous work, which means agents increasingly have to plan, iterate, recover from their own errors, and hold onto project context the whole way through — not just produce one clean diff and stop.

4. Oversight doesn't disappear — it scales differently

Back to that 60%-usage-but-0-to-20%-delegation number: the report is explicit that effective AI collaboration still requires active human judgment, and that agents are increasingly used to review other agents' output for security and architectural consistency — a second AI reading the first AI's homework, with a human still deciding what matters. CRED's case study frames this well: they doubled execution speed across their whole development lifecycle not by removing developers from the loop, but by shifting them toward higher-value review and design work. That distinction — speed from reallocation, not from absence — is the part I think gets lost when people summarize this report as "AI writes the code now."

5 & 7. Coding is leaking out past engineering entirely

Two of the report's trends are really one story: agentic coding is reaching legacy languages (COBOL, Fortran) and domain-specific tooling, and non-engineers — sales, legal, marketing, operations — are building their own automations directly. Zapier's number is the standout: 89% AI adoption across the entire organization, with 800-plus internal AI agents deployed, and design teams reportedly using Claude artifacts to prototype live during customer interviews instead of coming back weeks later with mockups. Legora's case study points the same direction from the other side — they use Claude Code to build their own product, and expose agentic capabilities so lawyers can build sophisticated automations with no engineering background at all. The line between "people who code" and "people who don't" is getting genuinely blurry.

6. The economics change what gets greenlit

TELUS's numbers are the clearest illustration: 13,000+ custom AI solutions built internally, engineering code shipped 30% faster, and over 500,000 hours saved at an average of 40 minutes per AI interaction. The report frames this as three compounding multipliers — agent capability, orchestration quality, and human experience using the tools — stacking into step-function gains rather than incremental ones. One stat worth sitting with: about 27% of AI-assisted work is described as things that simply wouldn't have gotten done otherwise — exploratory work and small quality-of-life improvements that used to lose the prioritization fight. That's a real, if less flashy, source of value.

8. The same tools cut both ways on security

The report doesn't dodge this: agentic tools democratize security review and hardening for defenders, but the same capability lowers the bar for reconnaissance and exploit development on the offensive side. Its stated conclusion is that teams who bake agentic security review into their process from the start end up better positioned — not because the tools favor defense inherently, but because defenders who adopt early get the head start.

What this looks like on a 3-person team

None of the case studies above are a 3-person shop, which is exactly why the report's core tension — 60% usage, 0-20% real delegation — matters more here, not less. There's no second reviewer with spare context to catch a mistake; often it's just me, reviewing my own intern's agent-assisted work, or my own. So in practice: boilerplate, mechanical refactors, and first-draft docs go to an agent without a second thought. Anything touching auth, payments, concurrency, or an architecture decision gets read line by line, no exceptions — and with the intern, that category gets a hand-written first pass before an agent ever touches it, so the reps that build judgment don't get skipped. The test I use before merging anything agent-written: if this breaks at 2am, will I know why within five minutes? If not, that's the review I skipped, and it's cheaper to do now than at 2am.


Sources: 2026 Agentic Coding Trends Report (Anthropic), 8 trends shaping software engineering in 2026 (Tessl).

Keep reading