The 14-22 Point Scaffolding Gap: Why Your Next Sprint Should Harden the Harness, Not Swap the Model
The Convergence
Six independent sources this week — a security benchmark vendor, an enterprise agent company, a QA engineering team, a vulnerability researcher, and two conference keynotes — landed on the same conclusion: the scaffolding around the model contributes more to task performance than the model itself. This stopped being a vibes claim. It has numbers now.
Twenty points of eval accuracy live in the scaffolding, not the model checkpoint.
The Data Points
| Source | Finding | Gap magnitude |
|---|---|---|
| Semgrep IDOR benchmark | Scaffolded pipeline: 53-61% F1; best bare model (GLM 5.2): 39% | 14-22 points |
| Zero-day researcher ('Bikini') | SOTA model added 'only marginal' lift over good harness + human oversight | Qualitative |
| Sierra (120+ eng team) | Models are an 'interchangeable constellation'; all customization at orchestration layer | Architectural |
| LinkedIn QA Agent | System 1/System 2 hybrid: deterministic replay for common cases, LLM only on drift | Cost/latency 80%+ reduction on happy path |
Why This Matters Now
Sonnet 5 shipped this week with a 5-point agentic coding gain (58.1%→63.2%), and the instinct is to upgrade. If Semgrep's result holds — and the mechanism (endpoint context, retrieval, structured framing) generalizes — then a 5-point model gain is noise against a 14-22 point scaffolding gain nobody has captured yet. The thing the model leaderboard doesn't tell you is where the remaining accuracy actually sits.
The zero-day researcher's methodology is the cleanest read here. He used a non-SOTA model as a high-recall candidate generator, then applied human precision via manual review. The model surfaced irregularities. The human wrote the PoCs. That's an asymmetric-role pipeline where model tier moves recall at the margin but not final output quality, which is gated by the human filter and the harness design.
The LinkedIn Pattern Worth Stealing
LinkedIn's QA Agent runs a System 1/System 2 hybrid: fast deterministic replay when the UI is unchanged, slower agentic reasoning only when it drifts. This is inference cost and latency optimization dressed as architecture — reserve expensive inference for the tail of novel cases. Most agent calls are repetitive, and routing them through an LLM pays frontier pricing for deterministic work.
The Contrarian Check
Sierra's claim is self-serving — they sell the orchestration layer. Semgrep authored the benchmark and sells the winning pipeline. The zero-day researcher's ablation is informal with no sample size. None of this is peer-reviewed. The convergence across independent, differently-motivated sources raises confidence in the direction, not the magnitude. The magnitude is vendor-favorable and needs local validation on your own traffic before it earns a migration.
Where This Breaks
The scaffolding thesis holds best on narrow, well-scoped, repetitive tasks (Sierra cites ~100K identical interactions/week). On novel reasoning, long-horizon planning, and creative generation, model capability still dominates. The correct mental model isn't 'scaffolding always wins.' It's 'for the 80% of traffic that's repetitive, the model is over-specified and the harness is under-built.'
What to do
Categorize your last 50 agent failures as model errors vs. interface errors (ambiguous tool APIs, missing context, bad data) this week
Prototype a System 1/System 2 routing layer: deterministic cache for repeated inputs, LLM only on drift detection — target one high-volume agent flow
Run Semgrep's experiment on your own task: hold the harness constant and vary only the model, then hold the model and vary scaffolding components. Measure which axis moves the needle more.
Stand up continuous model re-evaluation (monthly cadence) as config, not code — swap models behind a stable interface without rewriting agent logic