Your Agent Scaffold Is Worth 36 Percentage Points — Stop Optimizing Model Choice
The Data That Changes Your AI Investment Allocation
Two independent data points from this week converge on a single conclusion that should reshape how your team invests engineering effort in AI tooling. Stripe's 11-task AI agent benchmark shows Claude Opus 4.5 scoring 42% with one scaffold and 78% with another — identical model, 36-point swing, harness as the only variable. Separately, Boris Cherny (Head of Claude Code, ex-Meta Principal) described his daily workflow: 5 parallel Claude instances, each in a separate git checkout, shipping 20-30 PRs per day using a plan-mode-first, one-shot implementation pattern.
If you're spending cycles evaluating GPT-4.5 vs Claude Opus 4.5 vs Gemini Ultra, you're optimizing the wrong variable. The orchestration layer is where the 36-percentage-point swings live.
The Parallel Agent Workflow Pattern
Cherny's process is specific enough to prototype: start each agent in plan mode, iterate on the plan until solid, then let the agent one-shot the implementation. He runs 5 instances simultaneously, each on its own worktree. The skill shift is explicit — from deep-focus coding to rapid context-switching across parallel workstreams. The infrastructure implications are immediate: you need fast checkout/worktree creation, CI pipelines that handle 5x normal PR volume from one engineer, and review processes that absorb this throughput.
Glob+Grep Beats RAG for Code Search
The Claude Code team tried vector databases, recursive model-based indexing, and local RAG — all had operational downsides: stale indexes, permission complexity, maintenance burden. They landed on glob and grep, inspired by how Instagram engineers actually searched code when Meta's internal tooling broke. The implication: if you're building AI developer tools with sophisticated embedding-based code search, you may be over-engineering the retrieval layer. File naming conventions, consistent code organization, and grep-ability of your codebase matter more than any embedding model.
Codebase Health Is Now a Measurable AI Multiplier
Cherny led causal analysis at Meta proving clean codebases deliver double-digit-percent productivity improvements — and extends this to AI agents. Partially-migrated codebases with multiple frameworks confuse both humans and models. Every inconsistency is a potential hallucination trigger. His advice: 'always make sure that when you start a migration, you finish the migration.' Patreon validated this directionally: their 7-year TypeScript migration (11K files, 1M LOC) was dramatically accelerated in its final phase by AI-powered codemods in 2025 — the same migration that had stalled for years on complex legacy files.
Stripe's Benchmark: What Agents Actually Fail On
Stripe's benchmark tested full payment integration tasks end-to-end. Claude Opus 4.5 hit 92% on full-stack tasks; GPT-5.2 managed 73% on backend-only tasks. Agents averaged 63 turns per task — at current pricing, $5-15 per completed task. Failure modes were telling: agents struggle with ambiguous requirements and browser-based workflows. Well-specified integration tasks with clear APIs are the sweet spot. The 63-turn average also means your cost model must account for multi-turn conversations, not single completions.
The repeated code review pattern is the final compounding insight: Cherny's team converts any code review comment that appears 3+ times into an automated lint rule. This is a quality approach that compounds — especially with AI agents generating more code, automated enforcement of team standards prevents quality erosion without review bottlenecks.
What to do
Build an agent scaffold evaluation framework this sprint: isolate and benchmark your orchestration layer independently from the underlying model using representative tasks from your actual codebase
Prototype the parallel-agent workflow: set up 5 git worktrees with plan-mode-first prompting on your next feature development day
Audit your codebase for incomplete migrations and prioritize finishing them before scaling AI-assisted development
Start logging repeated code review comments and auto-convert to lint rules at the 3-occurrence threshold