Fetching from the wire…
Top 5 · 2026-06-04 · source-backed
Given everything above about token burn, this is the most immediately useful thing you can do this week. Anthropic's engineering team documented compaction: when a context window nears its ceiling, you high-fidelity-summarize it so the agent continues with minimal performance loss instead of either truncating or paying for an enormous window. On a 100-round web search task, compaction dropped token consumption by about 84%. (Anthropic Engineering)
Eighty-four percent. On long-running tasks. That's not a tuning tweak, that's the difference between a viable product and one that loses money on every run.
The key detail that's easy to miss: trigger compaction before you hit 100% capacity, not after. If you wait until the window is full, you've already paid for all those tokens and you're forced into a lossy compression under pressure. Budget the compaction to fire earlier, while you still have room to do a clean summary. Pair it with structured note-taking so the agent reloads only distilled state rather than re-reading its entire history every turn.
I've been doing a crude version of this by hand on my own agent loops, dumping intermediate state to a notes file and clearing the working context. The 84% number tells me I've been leaving a lot on the table by not formalizing it. The principle generalizes beyond Claude: any long-horizon agent loop accumulates context that's mostly dead weight after a few rounds. The early decisions matter, the intermediate reasoning mostly doesn't, and you're paying full price to keep re-reading all of it.
This is the practical answer to the OpenRouter problem. Agents burn tokens because their context grows unbounded over a long task. Compaction caps that growth. If you build agents and you're not doing this, it's the highest-leverage cost change available to you right now, and it costs you an afternoon of implementation.
Each link below shares sources, entities, or timing with this story.
Everyone covered the ChatGPT Work launch. Almost nobody read the API changelog, which is where the story actually is. GPT-5.6 shipped two things that change how you build agents. First, Programmatic Tool Calling: instead of the model returning one tool call at a time to your l...
(advanced, prompt-engineering) Each sub-agent explores using thousands of tokens but returns only 1-2K condensed summary. Lead agent gets high-signal, pre-filtered context. Anthropic's research system showed 90.2% performance improvement despite 15x more total tokens. Anthropi...
The most useful engineering blog post I've read this year dropped today with zero fanfare. Anthropic's engineering team published the actual architecture they use for long-running autonomous coding: a two-agent harness where an initializer agent sets up the project environment...
Your AI coding budget just got a lot harder to predict. A viral analysis on Hacker News (413 points, 396 comments) makes the case that every major AI lab has been running a loss-leader program, and the correction is starting. Two concrete dates matter. GitHub transitions all C...
Anthropic released Claude Fable 5.1 on September 1. Claude Code v2.1.257 made it the default Fable model at 17:53 UTC that day, with a 1M-token context window, $10 per million input tokens, $50 per million output, and $0.25 per million on cache reads (claude-code CHANGELOG). B...
43.3% on Frontier-Bench v0.1. Opus 4.8 scored 18.7%. That's not an incremental bump, that's the same benchmark with a different shape of answer. Anthropic released Claude Opus 5 on July 24 at $5/$25 per million input/output tokens, exactly half of Fable 5's $10/$50, while matc...
MindPattern daily
One email a day at 7 AM. Sources and a take on every story. Unsubscribe anytime.