The Harness Quarter: Token Efficiency, Eval Economics, and the $500/Day Developer
The New Axis Your Eval Harness Is Missing
Accuracy-only model evaluation is now actively misleading for production decisions, and this week's evidence is specific enough to act on. The invoice is where model choice gets decided this quarter, not the leaderboard.
IBM's Granite 4.1 8B spent 4M output tokens on the Artificial Analysis Intelligence Index against 78M for Qwen3.5 9B, a 19.5× efficiency gap at comparable capability. That gap does not appear on any accuracy leaderboard. It appears on the invoice. Factory AI's 13-model code-review bakeoff found a $1.25/PR model beat one costing more than 2× on real pull requests, with token spend uncorrelated to review quality on their harness. Harness engineering, iterating on prompts, tools, and middleware with the model held constant, lifted Terminal-Bench 2 pass@1 from 69.7% to 77.0% in 10 iterations, beating the human-designed Codex-CLI baseline at 71.9%.
The harness, not the model, is where this quarter's agent economics live.
The Cost Crisis Is Already Here
Across 15 companies surveyed by The Pragmatic Engineer, AI coding token spend has grown 10–15× in six months. Individual developer burn is hitting $500/day, and one developer burned $10K in a week because of a caching bug. A 2,000-person SaaS cut costs 30% by changing the default model from Opus to Sonnet, which is a config change rather than an architecture change.
On the eval side, evaluation compute has quietly crossed from overhead to bottleneck. Individual eval runs now cost tens of thousands of dollars. DeepMind's ProEval pattern, surrogate models scoring checkpoints cheaply with full evals reserved for release candidates, is the direction of travel. Netflix published the most portable eval blueprint of the quarter: ~600 expert-labeled golden examples with tiered reasoning and consensus scoring, landing at 83–92% accuracy across four quality dimensions.
The awkward finding: a community benchmark showed the two-word prompt "be brief" matched a purpose-built compression plugin on both token reduction and output quality. Trivial baselines embarrass sophisticated prompt frameworks more often than practitioners admit. The thing this doesn't tell you is whether the plugin still wins on tasks the benchmark didn't cover, which is worth checking before ripping it out.
| Optimization Lever | Reported Impact | Effort |
|---|---|---|
| Opus→Sonnet default swap | 30% cost cut | Config change |
| Harness engineering (10 iters) | +7.3pp accuracy, no model change | 1-2 sprints |
| Token-efficient model swap (Granite) | 19.5× fewer tokens | Eval + migration |
| Surrogate eval (ProEval pattern) | 50%+ eval compute savings | Quarter-long build |
| "be brief" vs. plugin | Parity on token reduction | Two words |
What This Changes
The binding constraint has shifted. Eval harnesses that report accuracy without token cost are no longer decision-grade instruments. Every model candidate should produce (accuracy, tokens-consumed) pairs plotted on a Pareto frontier. The Granite vs. Qwen gap only surfaces when token counts are logged per task. The Factory AI finding only surfaces when cost is a first-class eval dimension.
Microsoft's cloud margin dropped 5 percentage points to 56%, attributed explicitly to inference-heavy AI workloads including GitHub Copilot. Consumption pricing makes token-per-request a product metric rather than an infra footnote. Teams without per-request token accounting will learn their cost structure through a Finance escalation, not a dashboard.
What to do
Add $/correct-answer and tokens-per-task as first-class metrics in your model eval harness alongside accuracy
Run one iteration of agentic harness engineering on your top agent benchmark, holding the model constant
Build a 600-example golden eval set with tiered + consensus LLM-as-Judge scoring for your highest-stakes generative output
Implement surrogate-model eval (ProEval pattern) for continuous checkpoint scoring, reserving full benchmark runs for release candidates