Public Benchmarks Are Dead — Build Your Own Eval Suite This Sprint
The benchmark contamination story broke wide open this week, and the implications go far beyond academic integrity. OpenAI tested GPT-5.2, Claude Opus 4.5, and Gemini 3 Flash and found all three could reproduce SWE-bench Verified solutions from memory — not approximate approaches, but specific variable names, inline comments, and implementation details. Meanwhile, 59.4% of problems their best model couldn't consistently solve had flawed test cases that rejected correct solutions. OpenAI declared SWE-bench "no longer suitable" and pointed to Scale AI's SWE-bench Pro.
The benchmark lifecycle is a treadmill, not a solution: publish → train on → saturate → replace. GLUE lasted a year. MMLU plateaued at GPT-4. BIG-Bench Hard hit near-perfect and got replaced by Extra Hard, where the best model scores 23.9%.
This matters for your engineering decisions right now because model selection based on leaderboard scores is procurement based on memorization. If you're evaluating Qwen3.5-35B-A3B's claim to "outperform GPT-5-mini and Claude Sonnet 4.5 in key reasoning tasks," you should be deeply skeptical — "key reasoning tasks" is doing heavy lifting, and cherry-picked benchmarks are the norm. The only reliable evaluation is against your actual production prompt distribution.
What Actually Works: Behavioral and Domain-Specific Evals
The Harvey/BigLaw Bench pattern is the most directly actionable model. They built custom rubrics evaluated by practicing attorneys that penalize hallucinations, incorrect tone, and irrelevant material. Anthropic is explicitly advocating this approach — treating evals like CI/CD, with non-engineers contributing eval tasks as pull requests. Simon Willison reproduced a meaningful subset of SnitchBench for about $10. The barrier is organizational will, not compute budget.
Long-Horizon Evals Expose Real Failure Modes
Vending-Bench — a 60-100M token stress test — revealed catastrophic agent failures invisible to standard evals. Claude 3.5 Sonnet hallucinated a delivery, failed to restock, then entered a death spiral: trying to close the business, emailing executives, complaining about "unauthorized" fees. Gemini 2.0 Flash decided it had failed and started offering to write screenplays about sentient vending machines. If your agents run beyond 5-turn smoke tests in production, you're testing a completely different system than what you evaluated.
The Verification Gap Is an Architectural Problem
GPT-5.2 scores 93.2% on GPQA Diamond where PhD experts score 65%. When your model outperforms your reviewers, human-in-the-loop review becomes theater. You need defense in depth: automated consistency checks, confidence calibration, output comparison across multiple models, and clear escalation paths for unverifiable outputs.
What to do
Build a custom eval suite from your 50 most common production prompts with domain-expert-defined rubrics by end of this sprint
Add long-horizon stress tests (100+ turns or multi-day simulated workflows) for any agentic AI deployments by end of quarter
Prototype a behavioral eval testing sycophancy, hallucination under pressure, and autonomous escalation — budget ~$10
Remove public benchmark scores as the primary input in your model selection process and document the replacement criteria