📊 Full opportunity report: When One Agent Isn’t Enough: Claude Now Builds Its Own Team of Agents on the Fly on ThorstenMeyerAI.com — validation score, market gap, and execution plan.

TL;DR

Claude has introduced a new feature called dynamic workflows, enabling it to create and manage teams of agents during task execution. This development aims to address limitations of single-agent approaches in complex, high-value tasks, by orchestrating multiple subagents with specialized roles. The feature is currently in deployment for select use cases, with broader availability forthcoming.

Claude, the AI model from Anthropic, has introduced a new capability that allows it to build its own team of agents on the fly. This feature, called dynamic workflows, enables Claude to orchestrate multiple specialized subagents during complex tasks, addressing limitations of single-agent approaches. The development marks a significant step in AI orchestration technology, with potential applications in high-value, multi-step projects.

The dynamic workflows feature is designed to improve performance on long, complex, or adversarial tasks where a single agent often underdelivers due to issues like agentic laziness, self-preferential bias, and goal drift. Instead of relying on one agent to handle all aspects, Claude writes and executes a small JavaScript program that spawns multiple subagents, each with a focused brief and context window. This approach mimics human team management, assigning specific roles such as dispatcher, specialist, reviewer, or judge.

Mechanically, the workflow can select different models for subagents, run agents in isolated worktrees to prevent interference, and resume interrupted tasks. It employs orchestration patterns such as classify-and-act, fan-out-and-synthesize, adversarial verification, generate-and-filter, tournament, and loop-until-done. These patterns are familiar in human team management, translated into AI processes to enhance reliability and accuracy.

Anthropic emphasizes that this feature is most useful for complex, high-value tasks rather than simple requests, citing examples like rewriting the Bun runtime, conducting deep research, fact-checking, ranking support tickets, and root-cause analysis. The company notes that the approach is more beneficial for non-technical workflows, where orchestration and specialization improve outcomes.

At a glance
updateWhen: announced early 2024, currently in depl…
The developmentClaude now dynamically constructs and manages teams of agents during task execution to improve performance on complex problems.
Claude Builds Its Own Team: Dynamic Workflows — Insights
AI Dispatch · Insights · 1 July 2026

When one agent isn’t enough: Claude now builds its own team on the fly

Skills package what you know; loops decide how far you delegate over time. Dynamic workflows are the third axis — within a single task, Claude writes its own harness and assembles a temporary team of subagents. Think of it as Claude drawing an org chart for one job.

Why one agent grinding alone underdelivers
Agentic laziness
Declares done on partial work — 35 of 50 review items.
Self-preferential bias
Grades its own homework — likes what it already produced.
Goal drift
Loses the original objective across turns, especially after context is summarized.
These are the failure modes of one person doing a huge job alone. The cure is the manager’s: divide the work, give isolated briefs, and have someone independent check it.
The harness — an org chart Claude writes for one task
Orchestrator
Claude writes a JS harness on the fly
▼   fan out   ▼
Subagent
own context · model
Subagent
own worktree
Subagent
focused goal
Subagent
isolated
✕ adversarial verify
✕ adversarial verify
✕ adversarial verify
✕ adversarial verify
▼   barrier: wait for all   ▼
Synthesize
merge structured outputs
→ Result
one verified answer
Each subagent gets a clean context window and can run on a cheaper or smarter model — so no single overloaded context gets lazy, biased, or lost. Resumable if interrupted.
The six moves it composes
Classify-and-actroute by task type (switchboard)
Fan-out-and-synthesizeparallel agents → a barrier merges (map/reduce)
Adversarial verificationa separate agent attacks each result
Generate-and-filterbrainstorm wide, keep only survivors
Tournamentagents compete; pairwise judging > scoring
Loop-until-donespawn until a stop condition, not a fixed count
Where it earns its keep — often away from code
Big migrations & refactors Deep research → cited report Fact-check every claim Rank 1,000 tickets by severity Root-cause post-mortems (“why did sales drop?”) Triage a backlog at scale Design/naming by rubric Model routing
One security pattern to memorize — quarantine: agents that read untrusted public content are barred from high-privilege actions; a separate agent does the acting. Separation of duties for autonomous agents.
The take

The shift is from prompting a worker to commissioning a team — more output, more cost, and a manager’s judgment required. Reach for a workflow when a task is big, parallel, adversarial, or judgment-heavy — and when you can feel a single agent getting lazy, grading its own homework, or losing the plot. Bound it (token budgets, pilot first) — workflows can spawn hundreds of agents and burn far more tokens. For everything else, don’t hire five people to change a lightbulb.

Source: “A harness for every task: dynamic workflows in Claude Code,” Thariq Shihipar & Sid Bidasaria (Anthropic), Claude blog, 2 June 2026. Mechanics, patterns & use cases are Anthropic’s; the “org chart” framing is the author’s. A recent, still-evolving feature. Docs: code.claude.com/docs.
thorstenmeyerai.com

Implications for AI Task Management

The ability for Claude to dynamically assemble and manage teams of agents represents a significant advancement in AI orchestration. It addresses core limitations of single-agent systems, such as incomplete work, bias, and goal erosion over long tasks. This development could enable AI to handle more complex, multi-faceted projects autonomously, reducing the need for human oversight and increasing reliability in critical applications.

For organizations, this means more robust automation in areas like software development, research, and customer support, where complex workflows benefit from specialized subcomponents working in concert. However, the approach also raises questions about control, transparency, and safety, as AI systems gain more autonomous coordination capabilities.

The AI-Driven Software Team: A Practical Guide for Developers, Leaders, and Businesses Preparing for AI in Engineering

The AI-Driven Software Team: A Practical Guide for Developers, Leaders, and Businesses Preparing for AI in Engineering

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Evolution of Multi-Agent AI Systems

Anthropic’s Claude has been evolving through a series of features designed to improve its reasoning and task management capabilities. The recent addition of dynamic workflows completes a trilogy of innovations aimed at enabling Claude to handle more complex, high-value tasks. Previously, AI models operated as single agents with limited scope, often struggling with long-term consistency and multi-step processes.

The concept of orchestrating multiple agents is not new in AI research; however, Claude’s implementation is notable for its ability to generate custom harnesses on the fly, leveraging a model capable of reasoning about the task in real-time. This marks a shift from static, hand-coded workflows to flexible, adaptive orchestration driven by the AI itself.

“Claude’s new dynamic workflows enable it to mimic human team management, splitting complex tasks into specialized roles for better accuracy and reliability.”

— Thorsten Meyer, AI researcher

Unanswered Questions About Deployment and Safety

It is not yet clear how broadly Claude’s dynamic workflows will be deployed across different industries or use cases. Details about safety, oversight, and control mechanisms in fully autonomous team management are still emerging. Additionally, the performance and reliability of these workflows in diverse, real-world scenarios remain under evaluation.

Next Steps for Broader Adoption and Evaluation

Anthropic plans to expand access to the dynamic workflows feature, with ongoing testing in various domains such as software development, research, and customer support. Further research will focus on assessing safety, transparency, and efficiency. The company may also introduce controls to better oversee autonomous agent teams, ensuring alignment with human oversight.

Key Questions

How does Claude build its own team of agents?

Claude writes and executes a small JavaScript program that spawns multiple subagents, each with a specific role, goal, and context window, to collaboratively complete complex tasks.

What types of tasks benefit most from dynamic workflows?

High-value, multi-step, or adversarial tasks such as deep research, code refactoring, fact-checking, and root-cause analysis are most suited to this approach.

Are there safety concerns with autonomous agent teams?

Safety and oversight mechanisms are still being developed, and the broader deployment will likely include safeguards to prevent undesirable behaviors or goal drift.

Will this feature be available to all users?

Initially, access is limited to select use cases and customers, with plans for broader rollout as the technology matures and safety measures are validated.

Source: ThorstenMeyerAI.com

You May Also Like

The Orchestration Layer Arrives: What Anthropic’s Finance Agents Mean for Bloomberg, FactSet, and Wall Street

Anthropic releases AI-powered finance agents and connectors, positioning Claude as an orchestration layer over data providers, challenging Bloomberg’s UI moat.

Anthropic’s Safety Story Has Become a Power Story

Anthropic reports that its AI systems are increasingly capable of self-improvement, marking a shift from safety to power in its strategic narrative.

Brain‑Inspired Neuromorphic Chips

Lighter, faster, and more efficient: brain-inspired neuromorphic chips revolutionize computing by mimicking neural processes—discover how they will shape the future.

Understanding Spatial Audio on Headphones

Understanding spatial audio on headphones unlocks a more immersive sound experience, revealing how advanced technology creates lifelike 3D audio environments—discover how it works.