Claude Opus 4.8: what actually changes for businesses running on AI
Anthropic shipped Opus 4.8 on 28 May 2026 — same price as 4.7, with Dynamic Workflows and Effort Control. Here's what matters for teams already in production.
Same price as 4.7. Same model slot in your stack. Two genuinely new knobs — one of which changes what’s economically possible — and a benchmark sheet that you should mostly ignore for now.
That’s the honest read on Claude Opus 4.8, which Anthropic shipped this morning. The model ID is claude-opus-4-8. Input stays at $5 per million tokens, output at $25 per million. Fast mode dropped to $10 in / $50 out, which Anthropic notes is roughly 3× cheaper than the previous fast tier (Anthropic launch post).
If you operate an AI system in production today, the interesting thing in this release is not the benchmarks. It’s a new tool called Dynamic Workflows and a UI element called Effort Control. Everything else is a polish pass.
What’s actually new
Three changes worth a paragraph each.
Dynamic Workflows. A new tool that lets a single Claude session orchestrate large numbers of parallel subagents — Anthropic’s launch post and TechCrunch’s coverage both reference workloads with hundreds of agents inside one session, each with output verification baked in. The named example is codebase-scale refactors across hundreds of thousands of lines of code. We’ll come back to why this matters.
Effort Control. A three-position selector — standard, extra, max — now sits on claude.ai and on Cowork, defaulting to max for Opus 4.8. The same prompt at standard and max produces meaningfully different cost profiles. It’s the first time a frontier lab has shipped a user-facing knob that admits “yes, you’re paying for thinking, and yes, you should choose how much.”
System entries inside the messages array. The Messages API now accepts system-role entries mid-conversation, not just at the top. You can update an agent’s instructions in flight without invalidating the prompt cache. For anyone running long-lived agents — Managed Agents sessions, multi-turn workflows, custom harnesses — this removes a specific, annoying paper cut.
That’s the new surface area. The model itself also moves on benchmarks, which is where most of the launch coverage lives.
The benchmark bumps, honestly
Anthropic claims Opus 4.8 tops GPT-5.5 and Gemini 3.1 Pro on agentic benchmarks. 84% on Online-Mind2Web (a browser-agent benchmark), highest recorded Legal Agent Benchmark score, and the first model to break 10% on its all-pass standard (Anthropic). Anthropic also reports Opus 4.8 is 4× less likely than 4.7 to let code flaws pass unremarked, and “substantially lower misaligned behaviour rates” in alignment evals.
Tom’s Guide leads on the hallucination side: Anthropic says the model is less likely to confidently invent an answer it doesn’t have.
All of this is plausible. Some of it might even hold up in production. But benchmark gains rarely show up on day one in a real workflow. The agent you’re running is shaped by your prompts, your tools, your retrieval, and your guardrails — the model is one input among five. The honest version of “Opus 4.8 hallucinates less” is “we’ll know in four weeks whether the floor moved on production traffic.” Same goes for the alignment numbers. Don’t rewrite your evals around a launch-day claim.
The bench numbers are not a reason to migrate. The next two things are.
What Dynamic Workflows changes economically
The simplest way to describe Dynamic Workflows: one Claude session can now be a fleet operator, not just an assistant.
Until this release, “use 200 subagents to refactor a codebase” was a thing you built by hand — orchestration harness, queue, output verification, retry logic, the whole stack. It’s the work Claude Managed Agents made cheaper but didn’t eliminate. Dynamic Workflows pushes the orchestration inside the model’s tool-calling loop. The agent fans out, the agent collects, the agent verifies. You write the spec.
The economic shift is the part to focus on. Codebase-scale migrations, full-pipeline content rewrites, document-set normalisation, every-customer-record-touched audits — workloads previously priced as bespoke engagements because the orchestration was the work — now collapse toward a token bill plus a session cost. Axios’s framing is roughly right: this is the move from “intelligent assistant” to “fleet operator.”
If you have a backlog of “we’d do that if it weren’t a project,” this is the release to revisit it.
Effort Control: the knob that wasn’t there
The same question, asked at standard effort, might cost €0.05 and finish in seven seconds. The same question at max might cost €5 and take ninety seconds of model thinking before it answers. Same model, same prompt, different floor on quality and different ceiling on bill.
Anthropic has handed the cost-quality dial to the operator. That’s the right design and it’s also a new line item to govern.
Where max earns its money:
- The hardest agent task in your workflow — the one where wrong answers cost you a customer, an audit finding, or a re-run.
- One-shot analyses you’ll act on irreversibly. Migrations. Legal-document review. Anything where you’d rather pay €5 once than €0.05 fifty times.
- Eval baselines. Run your benchmark at max once to know the ceiling, then run production at standard with a clear gap to defend.
Where max is just expense:
- Routine extraction, classification, formatting. Standard was already overkill.
- High-volume inference on cached prompts where you’ve already squeezed quality from prompt design.
- Anything user-facing that needs to respond in under two seconds.
The mistake to avoid: defaulting every API call to max because the UI default is max. The UI default exists for the consumer asking one question at a time. Production systems with thousands of calls a day need an explicit policy.
What doesn’t change
Your model slot is still your model slot. If you’re running Opus 4.7 in production, the migration is changing one string in your API calls. Prompt-cache structure, tool definitions, MCP servers, retrieval layer — none of it needs touching. There is no architectural shift required to use Opus 4.8.
This is the boring sentence Anthropic doesn’t quite say out loud, but it’s the truth: most teams will swap the model ID, see a 1–3% improvement on their own evals, and move on. That’s a healthy outcome, not a disappointing one.
The teams who get more than that are the ones with a backlog of “we’d automate this if the orchestration weren’t the work” tasks. For them, Dynamic Workflows is the upgrade. The rest is housekeeping.
What to do this week
Three concrete actions, in order.
- Swap the model ID. Update
claude-opus-4-7references toclaude-opus-4-8in a staging environment, run your existing eval suite, and check that nothing regresses. If nothing breaks and the eval moves up, ship to production. Budget: an afternoon. - Test
effort=maxon your single hardest agent task. Pick the prompt where you currently accept a quality ceiling because the model couldn’t do better. Run it at max. If the answer is meaningfully better, write a policy for when to use max in production. If it’s the same, you’ve calibrated your expectations. - Audit your current hallucination floor before the new model touches production. Pick 50 real production outputs from the last week, label them honestly for invention, and store the rate. Re-measure in four weeks on Opus 4.8 outputs. This is how you actually know whether Anthropic’s claim held up, instead of guessing.
For teams running this kind of audit but lacking the eval infrastructure, our foundation service is built around exactly this — establishing a measurable baseline before any AI system is allowed to touch a production workflow. For teams ready to put Dynamic Workflows to work on a real fleet job, workflow ops is the slot.
FAQ
Should we migrate from Opus 4.7 to Opus 4.8 immediately?
For most teams, yes — the migration is a one-string change and pricing is identical. Run your existing eval suite in staging first to confirm no regressions on your specific workload. The risk profile is closer to a point release than a major-version upgrade.
Does Effort Control affect API pricing per token?
No. Token pricing stays the same. Effort Control changes how many tokens of internal reasoning the model spends before answering, which changes total cost per query — not the price of each token. At max, expect higher token consumption per request.
Is Dynamic Workflows available on the standard API or only on Claude Managed Agents?
It’s a tool exposed through the standard Messages API on Opus 4.8, alongside other built-in tools. Managed Agents sessions can use it, but it’s not exclusive to them. Note that orchestrating hundreds of parallel subagents has cost implications worth modelling before you let it run unattended.
Are the hallucination and alignment improvements verified independently?
Not yet. Both claims come from Anthropic’s internal evaluations published on launch day. Independent confirmation typically takes weeks to months as third parties run their own evals and operators report on production traffic. Treat day-one alignment claims as directional, not settled.