Anthropic Ships Claude Opus 4.8 Alongside Dynamic Workflows and Cheaper Fast Mode, With Workflows Capped at 1,000 Subagents

Anthropic just launched Claude Opus 4.8. Also, there two Claude Code updates shipped with it. Dynamic workflows run many subagents in parallel. Fast mode now supports Opus 4.8 at a lower price. Both are research previews.

What Dynamic Workflows Actually Are

A dynamic workflow is a JavaScript script that orchestrates subagents at scale. Claude writes the script for the task you describe. A runtime then executes it in the background. Your session stays responsive while agents work.

The plan moves into code, not Claude’s context window. Intermediate results live in script variables instead. So Claude’s context holds only the final answer. That is the core difference from subagents and skills.

The feature requires Claude Code v2.1.154 or later. It runs in the CLI, Desktop, and VS Code extension. It is available on Max, Team, and Enterprise plans. It is on by default on Max and Team. On Enterprise it is off until an admin enables it. It also runs on the Claude API, Amazon Bedrock, Vertex AI, and Microsoft Foundry.

You can start a workflow in two ways. Include the word workflow anywhere in your prompt. Or turn on a setting called ultracode. Ultracode combines xhigh reasoning effort with automatic workflow orchestration. Claude Code also bundles /deep-research as a built-in workflow.

How a Workflow Runs

When a workflow kicks off, Claude plans dynamically from your prompt. It breaks the task into subtasks. It fans work across subagents running in parallel. Agents address the problem from independent angles. Other agents then try to refute those findings. The run iterates until the answers converge. Results are checked before they are folded in.

The runtime applies hard limits. It allows up to 16 concurrent agents. It caps each run at 1,000 agents total. The workflow script itself cannot touch the filesystem or shell. Only the agents read, write, and run commands.

Progress is saved as the run proceeds. An interrupted job resumes within the same session. Completed agents return cached results on resume. Coordination happens outside the conversation, so the plan stays on track.

The Bun Rewrite Example

Anthropic highlighted one large example. Jarred Sumner used dynamic workflows to port Bun. The port moved Bun from Zig to Rust. It passed 99.8% of the existing test suite. It produced roughly 750,000 lines of Rust. It took eleven days from first commit to merge.

One workflow mapped the correct Rust lifetime for every struct field. The next wrote each .rs file as a behavior-identical port. Hundreds of agents worked in parallel, with two reviewers per file. A fix loop then drove the build and test suite until clean. The result is not yet in production.

What is Fast Mode Actually

Fast mode is not a different model. It is a high-speed configuration of Claude Opus. It delivers 2.5x faster output token speeds. Model intelligence and capabilities stay the same. You toggle it with /fast in Claude Code. A small icon marks an active session.

Fast mode trades cost for speed. For Opus 4.7 and 4.6, it is priced at $30/$150 per MTok. According to Anthropic official release, fast mode for Opus 4.8 is three times cheaper. It requires usage credits enabled on your account. It draws from those credits, not your plan’s included usage. It is best for rapid iteration and live debugging. Standard mode still fits long autonomous or cost-sensitive tasks.

Strengths and What to Watch

Strengths:

  • Workflows handle codebase-wide bug hunts, large migrations, and cross-checked research end-to-end.
  • Adversarial review and convergence aim for results a single pass cannot reach.
  • Fast mode keeps Opus-level quality while cutting latency for interactive work.
  • Resumable runs mean an interrupted workflow does not start over.

What to watch:

  • Both features consume meaningfully more tokens than a typical session.
  • A run can spawn up to 1,000 agents, so costs climb fast.
  • Fast mode bills from the first token at the higher rate.
  • Both ship as research previews, so pricing and availability may change.

Marktechpost’s Visual Explainer

Claude Code · Practical Guide

Dynamic Workflows & Fast Mode in Claude Opus 4.8

What Anthropic launched on May 28, 2026, and how to use it. Written for early-level AI engineers, software engineers, and data scientists.

Marktechpost

01 · What launched

Two Claude Code updates, shipped with Opus 4.8

  • Anthropic released Claude Opus 4.8 on May 28, 2026.
  • Dynamic workflows run many subagents in parallel inside Claude Code.
  • Fast mode now supports Opus 4.8 at a lower price.
  • Both ship as research previews.

02 · The concept

What a dynamic workflow actually is

  • A JavaScript script that orchestrates subagents at scale.
  • Claude writes the script for the task you describe.
  • A runtime executes it in the background while your session stays responsive.
  • The plan lives in script variables, not Claude’s context window.
  • Only the final answer returns to your session.

03 · Mechanics

How a workflow runs

  • Claude plans dynamically from your prompt and breaks it into subtasks.
  • Subagents run in parallel, addressing the problem from independent angles.
  • Other agents then try to refute those findings.
  • The run iterates until the answers converge.
  • Results are verified before anything reaches you.

04 · Limits & access

The hard limits and where it runs

  • Up to 16 concurrent agents, and 1,000 agents total per run.
  • The script cannot touch the filesystem or shell; only agents do.
  • Progress is saved; an interrupted run resumes in the same session.
  • On by default on Max and Team; Enterprise needs an admin.
  • Requires Claude Code v2.1.154 or later.

05 · Getting started

Three ways to start a workflow

  • Include the word workflow anywhere in your prompt.
  • Turn on ultracode, which sets xhigh effort plus auto orchestration.
  • Run the bundled /deep-research workflow.
# 1. Trigger a workflow with the keyword
Run a workflow to audit every API endpoint under src/routes/ for missing auth checks

# 2. Let Claude decide when to use one
/effort ultracode

# 3. Use the built-in research workflow
/deep-research What changed in the Node.js permission model between v20 and v22?

06 · In practice

The Bun rewrite example

99.8%existing test suite passing
~750Klines of Rust produced
11 daysfirst commit to merge

  • Jarred Sumner used dynamic workflows to port Bun from Zig to Rust.
  • Hundreds of agents ran in parallel, with two reviewers per file.
  • The result is not yet in production.

07 · Fast mode

Same Opus, faster output

  • Not a different model; a high-speed configuration of Claude Opus.
  • 2.5x faster output token speeds at identical quality.
  • Toggle with /fast; a icon marks it active.
  • $30 / $150 per MTok on 4.7 and 4.6; three times cheaper for Opus 4.8.
  • Requires usage credits; best for rapid iteration and live debugging.

08 · Decision

Which one to reach for

  • Use a workflow when one conversation cannot coordinate the agents.
  • Use fast mode when latency matters more than cost.
  • Both consume meaningfully more usage than a typical session.
  • Start scoped, watch usage, and verify outputs before trusting long runs.

09 · Sources

Read the primary docs

  • Anthropic — Introducing Claude Opus 4.8
  • Claude — Introducing dynamic workflows in Claude Code
  • Claude Code docs — Orchestrate subagents at scale with dynamic workflows
  • Claude Code docs — Speed up responses with fast mode

Marktechpost · AI engineering coverage

01 / 10

Key Takeaway

  • Anthropic just launched Claude Opus 4.8, with two Claude Code updates: dynamic workflows and cheaper fast mode.
  • Dynamic workflows let Claude write orchestration scripts that run tens to hundreds of parallel subagents, capped at 16 concurrent and 1,000 total per run.
  • The plan lives in script variables, not Claude's context, so only the final answer returns to your session.
  • Fast mode runs Opus at 2.5x output speed with identical quality; it's now three times cheaper for Opus 4.8 and needs usage credits enabled.
  • Both ship as research previews and consume meaningfully more usage, so start scoped and verify outputs.


Check out the Project and Technical detailsAlso, feel free to follow us on Twitter and don’t forget to join our 150k+ ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us

The post Anthropic Ships Claude Opus 4.8 Alongside Dynamic Workflows and Cheaper Fast Mode, With Workflows Capped at 1,000 Subagents appeared first on MarkTechPost.