Opus 5.5 in Plain English
Anthropic’s new flagship model — Opus 5.5 — launched on September 22, 2026, and the headline isn’t just that it’s smarter. For the first time in a flagship launch, the top-tier model got cheaper and faster at the same time: $4/$20 per million tokens, a 60% cut on cache reads, 30% faster output, and benchmark scores that back it up. Here’s what changed, the actual price math, and what it means for your daily work.
Explain it like I’m five
Imagine your favorite restaurant just hired a better chef — and at the same time lowered the menu prices and started serving food faster. Usually when something gets better, it gets more expensive. This time the opposite happened: the best cook in the kitchen now costs less and plates your meal quicker.
That’s Opus 5.5. Anthropic’s flagship Claude model — the one behind Claude Code’s hardest jobs — got an upgrade released on September 22, 2026. The model ID is claude-opus-5-5. It scores higher on the benchmarks that matter for real engineering work, and it does it for roughly 40% less money on typical workloads, with output arriving 30% faster. The rest of this guide is the grown-up version: the exact prices, the actual scores, and what it changes about how you work.
The price math
Prices are per million tokens. Opus 5.5’s headline numbers are $4 per million input tokens and $20 per million output tokens — 20% below Opus 5’s $5/$25. But the line item that matters most for agent workloads is cache reads, which dropped to $0.20 per million: a 60% cut.
$4 / M tokens on Opus 5.5 vs $5 / M on Opus 5. If your agent runs chew through prompts — and they do — this is where most of the savings land.
$20 / M tokens vs $25 / M on Opus 5. A straight 20% cut on the tokens the model generates.
$0.20 / M — a 60% cut. Agentic coding re-reads the same context constantly (your repo map, the plan, the conversation). Cached reads are the bulk of a long agent run’s input cost, so this cut compounds.
Anthropic reports Opus 5.5 is roughly 40% cheaper on typical workloads — the mix of input, output, and heavy cache reuse that real agent sessions look like, not just the list-price delta.
Copy-paste: estimate your own bill
Here’s a small snippet that prices one agent run. Plug in your run’s token mix and it compares Opus 5 to Opus 5.5 at list prices:
def estimate(input_m, output_m, cache_read_m):
# prices per million tokens; cache read price uses 0.50 for Opus 5 (60% cut -> 0.20)
opus5 = input_m * 5.0 + output_m * 25.0 + cache_read_m * 0.50
opus55 = input_m * 4.0 + output_m * 20.0 + cache_read_m * 0.20
return opus5, opus55
# example: a heavy agent session — 2M input, 0.5M output, 8M cache reads
old, new = estimate(2, 0.5, 8)
print(f"Opus 5: ${old:.2f}") # $26.50
print(f"Opus 5.5: ${new:.2f}") # $19.60
print(f"saving: {(1 - new/old)*100:.0f}%") # 26% on this mixNote what the example shows: with 8M cache reads in the mix, the cache-read cut does most of the work. That’s the realistic shape of long coding sessions — the model re-reading your codebase and its own plan — which is why Anthropic’s ~40% figure for typical workloads is bigger than the 20% list-price cut.
Opus 5.5’s price story is really the cache-read story: $0.20/M — a 60% cut on the tokens long agent runs spend the most on.
Speed + context
Cheaper is only half the upgrade. Output tokens arrive 30% faster, the context window is 1 million tokens, and a single response can run up to 128,000 tokens. That combination is what makes long agent runs practical instead of just possible.
Speed matters differently for agents than for chat. In a chat, faster tokens are nicer. In an agent loop, faster tokens are cheaper wall-clock time per iteration — the planner-writer-reviewer cycle that agent-harness pipelines run gets through more iterations before you context-switch. And the 1M-token context window means the harness can keep the repo map, the session history, and the memory vault in context at once, while 128K of max output lets the model write the long artifacts — full diffs, test files, migration scripts — without being cut off mid-thought.
Long context and cheap cache reads are two halves of one feature: the first time the model reads your 200K-token repo map it costs full price; every re-read after that costs $0.20/M. Opus 5.5 is priced for the pattern agents actually use.
The benchmark scores
Marketing claims are free; third-party evaluation isn’t. Opus 5.5 was evaluated externally — by Frontier Design and METR — and the numbers below are the reported results.
66.4%, up from Opus 5’s 52.3%. Real terminal tasks — installing packages, debugging shell scripts, wrangling environments. A 14-point jump on the benchmark closest to what Claude Code does all day.
81.8% on computer-use tasks: driving real operating systems, clicking, typing, recovering from mistakes. The “use the computer like a person” benchmark.
1846 Elo — the agentic-assistant benchmark scored like a chess rating. Higher is better, and 1846 is the number to beat.
The pattern across all three: the gains are concentrated in doing things — terminals, computers, long agentic tasks — not in trivia. That’s the workload profile this model was built for.
What it changes in your day
Benchmarks are abstract; the API bill and the terminal window are not. Here’s the concrete translation for someone who uses Claude Code every day.
The agentic coding loops that used to burn your budget — multi-step refactors, test-driven feature builds, the planner-writer-reviewer pipelines — now run at roughly 60% of the cost. Runs you’d have thought twice about become the default.
At $0.20/M for cache reads, prompt caching stops being an optimization and becomes the obvious default. Keep your repo map, your conventions file, and your system prompt cached; re-reads are nearly free.
Terminal-Bench at 66.4% — up 14 points — means the babysitting era is ending for routine terminal work. The environment setup, the failing-test triage, the dependency wrangling: kick it off, review the diff, move on.
Sonnet 5.5 and Haiku 5.5 arrive within weeks. The everyday model and the fast model get the same cheaper-faster upgrade — so whatever tier you default to today is about to get better too.
FAQ
September 22, 2026. The model ID is claude-opus-5-5 — that’s the string you’ll use wherever you select models.
Both numbers are real and they measure different things. 20% is the list-price cut: $4/$20 per million tokens vs Opus 5’s $5/$25. ~40% is Anthropic’s reported figure for typical workloads, which include heavy cache-read reuse — and cache reads got a separate 60% cut to $0.20/M. On input-heavy, cache-heavy agent runs, the bigger number is the honest one.
A 1-million-token context window and up to 128,000 tokens of max output per response. The practical read: you can keep very large repos and long session histories in context, and the model can write very long artifacts without truncation.
Opus 5.5 was evaluated externally by Frontier Design and METR — independent evaluators, not just Anthropic’s internal harness. That’s worth more than the numbers themselves.
They’re coming within weeks of the Opus 5.5 launch. If Opus is the flagship you reach for on the hardest tasks, Sonnet is the everyday workhorse and Haiku is the fast, cheap tier — both get the 5.5-generation upgrade soon.
If your workflow is agent-heavy — long sessions, terminal work, big refactors — the combination of higher Terminal-Bench scores, 30% faster output, and ~40% lower typical cost makes it the obvious default. For quick one-shot questions where Haiku-tier speed matters, wait for Haiku 5.5 and re-evaluate then.
Key takeaways
- Opus 5.5 (claude-opus-5-5, launched Sep 22, 2026) is Anthropic’s most capable model — and the first flagship upgrade that’s cheaper and faster, not just smarter.
- The price story is the cache-read story: $4/$20 per million tokens (20% below Opus 5), but cache reads at $0.20/M — a 60% cut on the tokens long agent runs spend most on.
- 30% faster output plus a 1M-token context window and 128K max output makes long, unsupervised agent runs practical.
- Externally evaluated by Frontier Design and METR: 66.4% Terminal-Bench (up from 52.3), 81.8% OSWorld 2.0, 1846 Elo on GDPval-AA.
- For daily work: agent loops fit the budget, caching becomes the obvious default, and routine terminal work stops needing a babysitter.
- Sonnet 5.5 and Haiku 5.5 arrive within weeks — the everyday and fast tiers get the same upgrade.