# Claude Opus 4.8: "a modest but tangible improvement"

> Source: <https://simonwillison.net/2026/May/28/claude-opus-4-8/#atom-everything>
> Published: 2026-05-28 23:59:50+00:00

Anthropic shipped [Claude Opus 4.8](https://www.anthropic.com/news/claude-opus-4-8) today. My favourite thing about it is this note in the release announcement:

Users will find Opus 4.8 to be a modest but tangible improvement on its predecessor. There’s still more to be done: we’re working on developing and releasing models that provide many of the same capabilities as Opus at a lower cost.

It's so refreshing to see an AI lab honestly describe a release as a minor incremental improvement over the previous model!

Honesty seems to be a theme. Here's my other favorite note from that announcement:

One of the most prominent improvements in Opus 4.8 is its

honesty. We train all our models to be honest---for instance, to avoid making claims that they can't support. But a general problem with AI models is that they sometimes jump to conclusions, confidently claiming to have made progress in their work despite the evidence being thin. Early testers report that Opus 4.8 is more likely to flag uncertainties about its work and less likely to make unsupported claims. This is borne out in[our evaluations], which show that Opus 4.8 is around four times less likely than its predecessor to allow flaws in code it has written to pass unremarked.

That linked system card includes the following:

Claude Opus 4.8 had the lowest incorrect-rate of the six models on every benchmark—the most direct measure of factual hallucination. It achieved this mainly by abstaining on questions about which it was uncertain rather than by answering more questions correctly.

Not much has changed since 4.7.

It's priced the same as Opus 4.5/4.6/4.7 - $5/million input and $25 per million output. "Fast mode" is twice that price, which is a significant reduction from their previous models - fast mode on 4.6/4.7 remains at $30/$150. Note that [fast mode](https://platform.claude.com/docs/en/build-with-claude/fast-mode) is only available to organizations that are part of the research preview, "Contact your account manager to request access".

Both the reliable knowledge cutoff and the training data cutoff are January 2026, the same as for 4.7.

The context window is still 1,000,000 tokens, and the max output is 128,000 tokens.

The [What's new in Claude Opus 4.8](https://platform.claude.com/docs/en/about-claude/models/whats-new-claude-4-8) document has some of the more interesting details. These caught my eye:

Mid-conversation system messages. Claude Opus 4.8 accepts`role: "system"`

messages immediately after a user turn in the`messages`

array (subject to[placement rules]). This lets you append updated instructions later in a long-running conversation without restating the full system prompt, which preserves[prompt cache]hits on the earlier turns and reduces input cost on agentic loops.

See also [this update](https://github.com/anthropics/anthropic-sdk-python/commit/2b826760101664ef89db42132932f53ba97c894d#diff-a947c9c02eab58e8ddbe799a11832d533836d242e07c7251997f8543f0981f2f) to the Anthropic Python SDK. Being able to steer the system prompt mid-conversation sounds really powerful. I was worried this would be incompatible with the abstraction provided by my own [LLM library](https://llm.datasette.io/en/stable/python-api.html#system-prompts), which expects a single system prompt per conversation... but it turns out my recent [redesign](https://simonwillison.net/2026/Apr/29/llm/) should handle that [just fine](https://github.com/simonw/llm-anthropic/issues/73).

Lower prompt cache minimum. The minimum cacheable prompt length on Claude Opus 4.8 is 1,024 tokens, lower than on Claude Opus 4.7.

I checked and 4.7's minimum [was 4,096](https://platform.claude.com/docs/en/build-with-claude/prompt-caching#cache-limitations).

Here are [pelicans riding bicycles](https://tools.simonwillison.net/markdown-svg-renderer#url=https%3A%2F%2Fgist.github.com%2Fsimonw%2Ffea4f7546626d627862dc241a4e3a86a) for all five thinking levels, `low`

, `medium`

, `high`

, `xhigh`

, and `max`

.

This time I ran them using the LLM CLI, exported the logs to Markdown and then had Claude Opus 4.8 [build me](https://github.com/simonw/tools/commit/71e4944766b577a327ff048cc63b739ba4cbade9) an HTML tool that could render that Markdown with the `svg`

fenced code blocks displayed as SVGs on the page.

This is the max one - it's clearly the best, but it did take 25 input, 17,167 output tokens for a total cost of [43 cents](https://www.llm-prices.com/#it=25&ot=17167&ic=5&oc=25&sel=claude-opus-4-5)!

Tags: [ai](https://simonwillison.net/tags/ai), [generative-ai](https://simonwillison.net/tags/generative-ai), [llms](https://simonwillison.net/tags/llms), [anthropic](https://simonwillison.net/tags/anthropic), [claude](https://simonwillison.net/tags/claude), [pelican-riding-a-bicycle](https://simonwillison.net/tags/pelican-riding-a-bicycle), [llm-release](https://simonwillison.net/tags/llm-release)
