When One Agent Isn’t Enough: Claude Now Builds Its Own Team of Agents on the Fly

📊 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 on the fly for complex tasks. This development aims to address limitations of single-agent approaches in handling long, multi-faceted projects. The feature is currently available for high-value, complex tasks and involves significant token usage.

Anthropic’s Claude AI now features ‘dynamic workflows,’ allowing it to automatically assemble and manage teams of specialized agents on the fly for complex, high-value tasks. This capability aims to overcome limitations of single-agent models, such as incomplete work, bias, and goal drift, by orchestrating multiple subagents with focused roles. The feature is designed for tasks that require nuanced coordination and is currently available in a limited scope.

The new feature, called dynamic workflows, is the third installment in Anthropic’s development series for Claude, following skills packages and loop-based delegation. It enables Claude to write small JavaScript programs that spawn and coordinate multiple subagents, each with dedicated goals and context windows. The workflow can choose different models for each subagent, decide whether they run in isolated worktrees, and resume interrupted tasks. This approach addresses common failure modes in single-agent workflows, such as agent laziness, self-bias, and goal drift.

Under the hood, Claude constructs these workflows using a set of orchestration patterns, including classify-and-act, fan-out-and-synthesize, adversarial verification, generate-and-filter, tournaments, and loop-until-done. These patterns mirror traditional team management strategies, such as routing, parallel work, independent review, and iterative refinement. The feature is particularly useful for complex projects like code refactoring, research synthesis, fact-checking, and ranking large datasets, where single-agent approaches often underperform.

At a glance
updateWhen: announced March 2024
The developmentAnthropic’s Claude now dynamically builds and orchestrates teams of agents during task execution, marking a significant upgrade in AI workflow capabilities.
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-Driven Complex Project Management

This development represents a significant step in making AI more capable of handling multi-faceted, high-stakes tasks without human intervention. By enabling Claude to autonomously assemble and manage specialized teams, organizations can potentially improve accuracy, reduce bias, and enhance efficiency in complex workflows. It also suggests a shift toward more collaborative AI systems that mimic human team dynamics, which could have broad implications for industries relying on large-scale automation and decision-making.

AI Bookkeeping Automation Prompt System: Copy-Paste Prompts, Templates, and AI Workflows to Save Time on Categorization, Reconciliation, and Reporting (AI Systems for Accountants Book 1)

AI Bookkeeping Automation Prompt System: Copy-Paste Prompts, Templates, and AI Workflows to Save Time on Categorization, Reconciliation, and Reporting (AI Systems for Accountants Book 1)

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Evolution of AI Workflow Capabilities

Anthropic has been progressively enhancing Claude’s abilities, starting with skills packages that encode organizational knowledge and looping mechanisms for delegation. The latest addition, dynamic workflows, completes this trilogy by introducing self-assembling agent teams. Prior approaches relied on static, hand-crafted orchestrations, but the new feature allows Claude to generate custom-built harnesses tailored to specific tasks, using advanced reasoning capabilities introduced with Claude Opus 4.8. This evolution reflects ongoing efforts to address the limitations of single-agent models in managing complex, long-duration projects.

“Dynamic workflows enable Claude to write and run small JavaScript programs that orchestrate multiple subagents, effectively mimicking a human team lead.”

— Thorsten Meyer, AI researcher

Amazon

multi-agent AI system software

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Limitations and Unresolved Questions

It is not yet clear how widely available the feature will be outside of controlled testing environments. The performance benefits and potential risks, such as unintended bias or coordination failures among agents, are still under evaluation. The extent to which this approach can replace or augment human oversight in real-world applications remains to be seen, and details about scalability and cost are still emerging.

Amazon

AI project management platform

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Next Steps for Deployment and Evaluation

Anthropic plans to expand access to dynamic workflows for select enterprise partners and gather data on performance and safety. Future updates may include enhanced control mechanisms, broader model integrations, and more sophisticated orchestration patterns. Monitoring and feedback from early users will guide further refinement, with a focus on balancing capability, safety, and cost-effectiveness.

Amazon

AI orchestration tools for complex tasks

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Key Questions

How does Claude build its own team of agents?

Claude writes small JavaScript programs called workflows that spawn and coordinate multiple subagents, each with a specific role and goal, mimicking a team lead’s management functions.

What types of tasks benefit most from dynamic workflows?

Complex, high-value projects such as large code refactoring, detailed research synthesis, multi-step fact-checking, and large dataset ranking are most suited for this approach.

Are there limitations or risks associated with this feature?

Potential issues include coordination failures among agents, unintended bias, and increased token usage. Its deployment is currently limited to specific, high-stakes tasks for evaluation.

Will this feature replace human project managers?

Currently, it aims to augment human oversight by handling complex sub-tasks autonomously, but full replacement is not anticipated in the near term.

Source: ThorstenMeyerAI.com

You May Also Like

What Emily Bender Meant By “Stochastic Parrots”

Linguist Emily Bender clarifies her use of ‘stochastic parrots’ to critique large language models and their limitations in AI development.

Mobilisiert, nicht ausgegeben: Was von Europas €200-Milliarden-KI-Offensive übrig bleibt

Die EU kündigt eine KI-Investitionsoffensive mit 200 Mrd. € an, doch nur ein Bruchteil ist garantiert. Die tatsächlichen Mittel und Auswirkungen bleiben unklar.

A Skill Is A Folder, Not A Prompt: What Anthropic Learned Running Hundreds Of Them

Anthropic reveals that effective AI Skills are folders containing instructions, scripts, and knowledge, transforming prompt engineering into durable organizational assets.

The CFO’s new operating system. Anthropic, OpenAI, and the consulting margin that just got compressed.

AI labs Anthropic and OpenAI are moving from model sales to integrated operating systems for enterprise finance, backed by PE joint ventures and strategic alliances.