Vercel's v0 Adds Claude Opus 4.8 the Day Anthropic Shipped It
Anthropic's Claude Opus 4.8 lands in v0 on launch day, bringing Dynamic Workflows, a 27-point math benchmark leap, and a 3x cheaper fast mode to Vercel's AI app builder
- Claude Opus 4.8 is now live in v0, available immediately from the model selector on launch day.
- Dynamic Workflows (research preview) lets Opus 4.8 fan out hundreds of parallel subagents for codebase-scale tasks in a single session.
- Benchmark leap: 96.7% on USAMO 2026 math (up 27.4 points from Opus 4.7) and 69.2% on SWE-bench Pro, both Anthropic records.
- Same price, cheaper fast mode: $5/$25 per million tokens standard; Fast Mode is now 3x cheaper than Opus 4.7's, with Databricks reporting 61% token cost savings.
- Three-tier effort control (
high,xhigh,max) lets you tune reasoning depth and cost per request via the Vercel AI Gateway. - Shipped 41 days after Opus 4.7, the fastest Opus release cycle yet, amid competitive pressure from OpenAI Codex and Gemini updates.
v0, Vercel's AI-powered full-stack app builder, added Claude Opus 4.8 to its model selector on the same day Anthropic shipped it. The move keeps v0 at the cutting edge of Anthropic's lineup and gives builders immediate access to what is shaping up to be a meaningfully stronger model for the kind of complex, multi-step coding work that v0 is built around.
What actually changed in Opus 4.8
Opus 4.8 arrived just 41 days after Opus 4.7, targeting the same coding, agentic, and knowledge-work use cases at the same list price. Anthropic positions it as "a modest but tangible improvement on its predecessor" rather than a step-change. That framing undersells the benchmark numbers.
Opus 4.8 scored 96.7% on the USAMO 2026 math benchmark, up from 69.3% on Opus 4.7 , a 27.4 percentage-point gain in a single 41-day release cycle, the biggest single-cycle math improvement in Opus history. On coding, it posts the highest SWE-bench Pro score Anthropic has ever shipped at 69.2%, alongside OSWorld-Verified at 83.4% and MCP-Atlas at 82.2%.

Dynamic Workflows: the headline feature
The most structurally new capability is Dynamic Workflows, currently in research preview. The model can plan a task and fan it out across hundreds of parallel subagents in a single session, which Anthropic describes as a step toward handling codebase-scale migrations across hundreds of thousands of lines of code in one run. Think of it as the model acting as both the project manager and the worker pool simultaneously.
For v0 users, this matters most when you're building something that isn't just a single component , full-stack apps with database schemas, API routes, auth flows, and frontend logic all at once. Anthropic positions Opus 4.8 for long-horizon agentic execution: complex, multi-step coding workflows where the model maintains coherence across many turns, including refactors that previously required human correction mid-task.
The effort and cost picture
Opus 4.8 launched at $5 input / $25 output per million tokens, the same price as Opus 4.7. But the more interesting cost story is Fast Mode. Fast Mode is now priced at $10 input / $50 output per million tokens , 3x cheaper than Opus 4.7's Fast Mode. Databricks ran Opus 4.8 Fast Mode in their Genie AI agent and reported 61% cheaper token costs versus Opus 4.7.
Beyond Fast Mode, the model ships with a new three-tier effort control system:
- high , the new default, balances quality and cost
- extra (called
xhighinside Claude Code) , deeper reasoning for harder problems - max , full compute, for the most demanding analytical work
Adaptive thinking lets Claude Opus 4.8 scale reasoning per request. Pairing it with the effort parameter when running mixed workloads lets the model spend compute where it pays off and stay efficient on simpler turns. In the AI SDK, you configure this as:
const result = streamText({
model: 'anthropic/claude-opus-4.8',
providerOptions: {
anthropic: {
thinking: { type: 'adaptive' },
effort: 'high'
}
}
})What it's good at , and where to be careful
Anthropic positions Claude Opus 4.8 for long-horizon agentic execution: complex, multi-step coding work and knowledge-work writing where the model needs to maintain coherence across many turns and produce clearer prose. The model also comes with a notable improvement in epistemic honesty , early testers found it is more likely to flag uncertainties about its work and less likely to make unsupported claims. A testimonial from Bridgewater Associates noted that the biggest difference was the model's tendency to proactively flag issues with inputs and outputs that other models routinely missed.
Where Opus 4.8 is not the right call:
- Latency-sensitive features , Claude Haiku 4.5 is faster and cheaper on well-bounded high-throughput requests
- High-volume, cost-sensitive traffic , Claude Sonnet 4.6 offers Opus-approaching intelligence at Sonnet pricing
- Fixed compute budgets , if you need deterministic token spend per request, Opus 4.6's fixed thinking budget is a better fit
Using it in v0 and the AI Gateway
In v0, Opus 4.8 is available directly from the model selector , no configuration required. For teams building their own pipelines, through the Vercel AI Gateway, Claude Opus 4.8 is available with the standard unified API, observability, retries, and failover across Anthropic, Bedrock, and Vertex AI. AI Gateway mirrors provider pricing with no markup and adds no platform fee on inference, including for Bring Your Own Key requests.
Free users who haven't made a payment get $5 of credits every 30 days to experiment with the model directly in the Gateway playground. For production use, Anthropic says Opus 4.8 is available to supported Pro, Max, Team, and Enterprise users.
The practical use cases that make most sense for Opus 4.8 in v0 specifically:
- Full-stack app generation with complex data models and multi-route APIs
- Large refactors across many files where context coherence matters
- Agentic builds that connect to databases, external APIs, and auth providers in a single session
- Knowledge-work writing tasks like drafting, data analysis, and building presentations where clearer, less hedgy output matters
The 41-day release cadence between Opus 4.7 and 4.8 signals that Anthropic is moving faster than its historical pace, partly in response to competitive pressure from OpenAI's Codex and Google's Gemini releases. For v0 users, that means the model powering your builds is now on a much tighter improvement loop than it was a year ago.