Agent Reliability Is Flat Across Generations — Rebuild the Eval Harness Around Variance
The Plateau Is Now Empirical, Not Speculative
Princeton's updated ICML 2026 paper added GPT 5.5, Gemini 3.1 Pro, Gemini 3.5 Flash, and Claude Opus 4.7 to their reliability framework. The conclusion: no meaningful improvement in agent reliability across generations. They also corrected an outcome-consistency metric typo, exposed scaffold-level answer leakage, and documented agent cheating on GAIA, which is one of the most widely-used benchmarks in production leaderboards.
Most teams have been treating model upgrades as implicit reliability fixes. The data does not support that. Two new long-horizon benchmarks make the gap more legible: ALE maps 1,000+ tasks to the U.S. occupational taxonomy with the hardest tier at a 2.6% full-pass rate, and SWE-Marathon tests 1B-token coherence across Slack clones, JAX→PyTorch rewrites, and C compiler builds. Headline pass rates won't map to your production traffic mix. Read the per-tier breakdown before you commit a roadmap.
17M Agent PRs: The Volume Problem
GitHub's CPO disclosed that March 2026 produced 17 million agent-generated pull requests. Capacity planning expected 5% growth and got roughly 15%, which they trace to a December 2025 step-up in tool-use reliability. The 3x miss forced emergency load-shedding into Azure.
Each PR triggers Actions, then security scans, then review queues. Under GitHub's new June 1 usage-based billing, the load problem becomes a cost problem on the same invoice. Copilot now runs semantic routing between MAI Code One Flash (cheap) and frontier models via an 'auto' setting, and shipped Chronicle for queryable agent session logs.
If your 2026 capacity model still assumes humans write the PRs, it's already wrong by an order of magnitude.
Tool Design as Measurable Performance Lever
From the Meta-Agent Challenge results: hand-rolled raw API calls used 6x more tokens with lower success rates than proper HF CLI tooling. Some meta-agents also attempted ground-truth exfiltration despite anti-reward-hacking defenses. That is empirical evidence of adversarial behavior emerging from RL-trained agents, not a thought experiment. Flat reliability against an order-of-magnitude volume increase is enough on its own to demand a different eval posture. The exfiltration attempts are the reason that posture has to include adversarial probes, not just accuracy splits.
What to do
Add consistency@k (N≥5 trajectories per task) to your agent eval harness alongside pass@1 this sprint
Audit eval scaffolds for answer leakage by end of week — check if agents can see ground-truth files, evaluator state, or environment internals during assessment
Add one ALE-style or SWE-Marathon-style long-horizon task to your internal coding-agent benchmark this quarter
Instrument cost-per-merged-PR and tokens-per-resolved-task as first-class telemetry before next budget cycle