The Checkpoint Stopped Being the Variable
Two of the largest reported gains in the reviewed sources landed with frozen weights, which turns your harness, cache prefix and regression cadence into the highest-leverage surfaces you own.
Begin with what the numbers cannot establish. DeepSeek published no technical report, no seed counts, no confidence intervals, and no ablation isolating the post-training change. Terminal-Bench is quoted two ways: 82.7 from @cline, 79% from Artificial Analysis on benchmark version 2.1. There is also an arithmetic gap nobody has reconciled. Output-token usage reportedly fell 12% against the predecessor, while cost per task is described as marginally higher. At fixed pricing that only closes if turn count or tool-call volume rose, and neither was reported. Multiple independent commentators landed on the same post-training read, which makes the direction credible. Convergent commentary is not reproduction.
The compaction result from AI Breakfast has the same weakness pointed in a more useful direction. Retained reasoning and context compaction were switched on together, so the 2.9x relative accuracy lift is unattributed between the two interventions and whatever interaction exists between them. That decides implementation order, which is the whole practical question. It is also one benchmark measuring abstraction and reasoning, with no evidence of transfer to retrieval-heavy or tool-heavy production work.
Why frozen-weight gains change your engineering plan
Gains are arriving inside the harness, which means model identity is no longer a stable experimental variable. A same-family checkpoint moved agentic behavior 25 points overnight. An eval suite that runs quarterly in a notebook cannot see that. It has to be a scheduled job with regression gates and a served-model-ID field on every row.
The cost side moved further than the accuracy side. DeepSeek lists $0.14 in and $0.28 out per million tokens, and cached input drops to $0.0028 per million, a 50x discount. Artificial Analysis conditioned its Pareto-frontier placement on roughly a 99% cache hit rate, which almost no production workload satisfies by default. Prompt assembly code is therefore a cost-optimization surface. A timestamp, a session ID, or a reordered retrieval chunk near the front of the prompt torches the prefix and multiplies the input bill silently, with no error raised.
A cache-prefix bug is a 50x cost regression that throws no exception and shows up only in the invoice.
Where the sources agree, and where they don't
| Lever | Reported effect | Who owns it | Evidence gap |
|---|---|---|---|
| Post-training only (V4-Flash) | Terminal-Bench 56.9 to 82.7 | Vendor | No report, no ablation, two conflicting scores |
| Compaction + retained reasoning | ARC-AGI-3 13.3% to 38.3%, 6x fewer output tokens | You | Two interventions, no ablation, no variance |
| Cache-prefix stability | Cached input at 2% of list price | You | Pareto claim assumes ~99% hit rate |
| Environment engineering (Cursor) | Agent-authored merged PRs ~10% to >50% | You | Moving denominator; no revert or defect rate |
TLDR AI's read on the Cursor figure is the discipline worth carrying across all of this. The ratio has an unstated denominator, and the thing it does not tell you is revert rate, defect escape rate, or review burden. What transfers is the stated causal lever: making dev environments legible, runnable and testable without a human unblocking the agent. Same class of intervention as compaction. the harness, not the checkpoint.
The defensible move is narrow. Run the compaction ablation properly, because unlike a vendor release it is fully under your control and reversible. And instrument cache-hit rate before crediting any cost win to model choice.
What to do
Run a three-arm ablation this sprint on your longest-horizon agent eval — retained reasoning only, compaction only, both — with model, seeds and task set fixed, reporting accuracy and tokens-per-solved-task with bootstrap intervals.
Refactor prompt assembly to hoist all static system, tool and schema content into an immutable prefix and move timestamps, session IDs and retrieved chunks to the tail, then add observed cache-hit rate as an SLI alerting below 90%.
Convert your agentic eval suite from an ad-hoc notebook run into a scheduled job with regression gates and served-model-ID logged per row, before the next same-family checkpoint update.