Anthropic’s latest Claude Opus 4.8 adds modest benchmark gains, a “dynamic workflows” feature for Claude Code, and an effort‑control slider for claude.ai. The model runs faster in fast mode and is priced the same as Opus 4.7, but the core architecture remains unchanged. While early testers report better self‑checking and fewer hallucinations, the improvements are largely evolutionary and come with trade‑offs such as higher token usage at the top‑effort setting.
What Anthropic claims
- Claude Opus 4.8 is a drop‑in upgrade to Opus 4.7, promising higher scores on coding, agentic, and reasoning benchmarks.
- New effort‑control UI lets users tell the model how much “thinking” to spend on a response.
- Dynamic workflows in Claude Code claim to let the model orchestrate hundreds of parallel sub‑agents for large‑scale code migrations.
- Fast mode runs 2.5× faster and is now three times cheaper per token than previous fast‑mode pricing.
- Pricing stays at $5 / M input tokens and $25 / M output tokens (fast mode $10 / M in, $50 / M out).

What’s actually new
Architecture and training
Opus 4.8 is built on the same transformer backbone that powered Opus 4.7; Anthropic has not disclosed a larger parameter count or a new pre‑training corpus. The public System Card notes a modest increase in fine‑tuning data focused on code and legal reasoning, which explains the benchmark bumps rather than a wholesale redesign.
Benchmark numbers
| Benchmark | Opus 4.7 | Opus 4.8 | GPT‑5.5 |
|---|---|---|---|
| Super‑Agent (end‑to‑end) | 78 % | 84 % | 81 % |
| Online‑Mind2Web (browser‑agent) | 71 % | 84 % | 78 % |
| Legal Agent (all‑pass) | 8 % | 10 % | 9 % |
| CursorBench (coding) | 86 % | 91 % | 87 % |
The gains are real but modest—typically a 3–6 percentage‑point lift. Importantly, the cost‑per‑task remains roughly the same because the higher‑effort setting consumes more tokens. The “fast mode” price drop is offset by a lower quality ceiling; at 2.5× speed the model’s reasoning depth drops by about one‑third, according to the internal evaluation logs.
Dynamic workflows
The new feature is essentially a scheduler that spawns multiple Claude Code instances, each handling a sub‑task (e.g., linting a file, running a unit test). The parent model aggregates the results and performs a final verification pass. In practice, this works well for codebase‑scale migrations where the overall plan is static and the sub‑tasks are independent. It does not magically solve dependency‑heavy refactors; the verification step still fails on about 12 % of large migrations, requiring manual intervention.
Effort control UI
The slider maps to three preset token‑budget profiles:
- Low – ~0.8× the default token budget, response time cut by ~30 %.
- Default – matches Opus 4.7’s token usage.
- High/Extra – up to 1.4× tokens for tougher problems. Developers can also request the hidden max setting via the API, which removes the budget cap entirely. This flexibility is useful for research but adds a new tuning knob that teams must monitor to avoid runaway costs.
Honesty and alignment
Anthropic’s internal alignment audit reports a four‑fold reduction in “unsupported claims” compared with Opus 4.7. In a controlled coding test, Opus 4.8 flagged 78 % of its own compilation errors, versus 62 % for the prior model. The improvement stems from a larger self‑critique dataset rather than a fundamental change in the model’s objective function.
Limitations that remain
- Token efficiency vs. quality trade‑off – The high‑effort mode improves accuracy but at a noticeable token cost. For workloads that are already token‑heavy (e.g., long legal documents), the price advantage of fast mode may be outweighed by the drop in reasoning depth.
- Tool‑calling brittleness – While the number of tool‑calling steps has decreased, the model still occasionally drops arguments mid‑workflow, especially when the tool schema changes dynamically.
- Domain‑specific knowledge – The legal benchmark improvement is largely due to better citation formatting; substantive legal reasoning still lags behind specialized models such as Claude Mythos Preview.
- Dynamic workflow overhead – Spawning hundreds of sub‑agents introduces latency spikes and higher memory usage on the server side, which can be a bottleneck for smaller cloud deployments.
- Safety guardrails – The alignment report shows misalignment rates comparable to Mythos Preview, but the absolute numbers are still non‑zero. In high‑stakes settings (tax filing, medical advice) a human review loop remains mandatory.
How this fits into the broader picture
Anthropic is clearly positioning Opus 4.8 as the workhorse for enterprise agents—coding assistants, legal research bots, and data‑oriented AI like Databricks’ Genie. The incremental gains keep the model competitive against OpenAI’s GPT‑5.5, but the real differentiator remains the system‑level tooling (dynamic workflows, effort control) rather than raw model intelligence.
For developers, the practical takeaways are:
- If you already use Opus 4.7, the upgrade is a painless drop‑in with a modest quality bump.
- Leverage the effort slider to balance cost and latency on a per‑request basis; the default high‑effort setting is a safe bet for most production pipelines.
- Treat dynamic workflows as a batch processing layer rather than a universal solution for all code‑base changes.
- Keep a human‑in‑the‑loop for any task that requires legal or financial certainty; the reported 10 % all‑pass on the Legal Agent benchmark is still far from “no‑review needed.”
What’s next?
Anthropic hints at a “higher‑intelligence” class of models under Project Glasswing, currently limited to a few partners for cybersecurity work. If those models achieve the promised safety standards, they could finally give Opus a true successor rather than an incremental patch.
In the meantime, Opus 4.8 offers a steady, measurable improvement without changing the pricing model—a sensible move for enterprise customers who value predictability over hype.
Related resources
- Official Claude Opus 4.8 announcement
- Detailed System Card (PDF)
- GitHub repo for Claude Code dynamic workflow examples: https://github.com/anthropic/claude-code-workflows
- Documentation on the effort control UI: https://docs.anthropic.com/claude/effort-control
- Benchmark suite description (Terminus‑2 harness): https://github.com/anthropic/terminus-2

Comments
Please log in or register to join the discussion