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 added a feature called dynamic workflows, enabling it to assemble, orchestrate, and disband teams of agents on the fly for complex tasks. This innovation addresses limitations of single-agent approaches and improves handling of high-value, multi-step projects.

Anthropic has introduced a new feature called dynamic workflows within its AI model Claude, enabling the system to automatically assemble a team of specialized agents on the fly for complex, high-value tasks. This development allows Claude to better handle projects that require parallel processing, independent verification, or multi-step reasoning, addressing longstanding limitations of single-agent workflows.

The dynamic workflows feature is built on a small JavaScript program that Claude writes and executes to orchestrate subagents. These subagents can be assigned specific roles such as classification, verification, or synthesis, each with its own context window and model choice. The system can also decide whether subagents operate in isolated worktrees to prevent interference and can resume interrupted workflows seamlessly.

According to Anthropic, this capability is particularly useful for tasks like code refactoring, fact-checking, and complex research routines, where dividing work among multiple agents leads to better accuracy and efficiency. The feature is not intended for simple tasks like fixing typos, but rather for high-stakes, multi-faceted projects that benefit from team-like coordination.

At a glance
updateWhen: announced recently, with ongoing develo…
The developmentAnthropic’s Claude now autonomously builds and manages its own team of agents during complex tasks, marking a significant upgrade in AI orchestration 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 Collaboration and Complex Workflows

This development marks a significant step toward autonomous AI team management, allowing models like Claude to handle tasks traditionally requiring human oversight or multiple specialists. It could improve AI performance on complex projects, reduce errors caused by single-agent limitations, and enable more scalable, high-value automation across industries such as software development, research, and quality assurance.

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 AI Orchestration and Workflow Automation

Prior to this, AI models like Claude operated primarily as single agents, which posed challenges for long, complex, or adversarial tasks due to issues like goal drift, self-bias, and partial completion. The concept of orchestrating multiple agents was known but often required manual setup or static configurations. Anthropic’s move to dynamic, on-the-fly team building extends the idea of automation and introduces more flexible, context-aware workflows, building on earlier work like the skills package and looping features.

This is the third piece in a series from Anthropic’s Claude Code team, completing a broader vision of skills, loops, and now, dynamic workflows, aimed at making AI more capable of managing complex, multi-step projects autonomously.

“Claude’s ability to write and execute its own orchestration scripts marks a new level of autonomous task management, especially for high-value projects.”

— Thorsten Meyer, AI researcher at Anthropic

Agentic AI Engineering: Building AI Agents for Beginners: A Hands-On Guide to No-Code Workflows, LLM Tools, RAG, Automation, and Safe Multi-Agent Systems

Agentic AI Engineering: Building AI Agents for Beginners: A Hands-On Guide to No-Code Workflows, LLM Tools, RAG, Automation, and Safe Multi-Agent Systems

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Unanswered Questions About Workflow Reliability and Safety

It is not yet clear how reliably Claude can manage complex workflows over extended periods or in adversarial environments. Details about safeguards, error handling, and oversight mechanisms remain limited, and real-world testing is ongoing to assess robustness and safety.

AI Orchestration Systems: AI Orchestration Guides | Business Process Automation | AI in Business Transformation | Adaptive Workflow Systems | Modern AI Technologies | Scalable Automation Platforms

AI Orchestration Systems: AI Orchestration Guides | Business Process Automation | AI in Business Transformation | Adaptive Workflow Systems | Modern AI Technologies | Scalable Automation Platforms

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Next Steps for Deployment and Performance Evaluation

Anthropic plans to expand the use of dynamic workflows across various applications, monitor performance in real-world settings, and refine safety protocols. Further updates are expected as the system matures, with potential integration into broader AI management platforms and enterprise workflows.

Amazon

AI project collaboration tools

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 a small JavaScript program that specifies how to spawn, coordinate, and manage subagents, each with designated roles and isolated contexts, to handle different parts of a complex task.

What types of tasks benefit most from dynamic workflows?

High-value, multi-step projects such as code refactoring, research synthesis, fact-checking, and complex decision-making processes benefit most, as they require parallel processing, verification, and independent review.

Is this feature available for all users now?

It is currently in deployment and testing phases, with broader availability expected as Anthropic evaluates its performance and safety in real-world applications.

What are the safety considerations with autonomous agent teams?

Anthropic emphasizes ongoing safety measures, including verification steps and safeguards, but detailed safety protocols for fully autonomous workflows are still under development and review.

Source: ThorstenMeyerAI.com

You May Also Like

How Digital Artists Build Better Workstations for Focus and Speed

Unlock the secrets to creating an efficient workstation for digital artists that enhances focus and speed—discover essential tips that could transform your creative process.

Digital Art Market Growth: Opportunities for Creators

Seize the rapidly expanding digital art market’s opportunities to showcase, sell, and innovate—discover how to thrive in this evolving industry.

Évian and the Fallout: What Europe Actually Wants From Amodei, Hassabis, and Altman

European leaders press US AI CEOs for reliable access, sovereignty, and safety measures amid US export controls and geopolitical tensions.

Every Benchmark Launched 2023-2024 Has Fallen — The METR / SWE-Bench / CORE-Bench / MLE-Bench / PostTrainBench Sequence

Every major AI research benchmark launched in 2023-2024 has either saturated or is nearing saturation, indicating rapid progress in AI capabilities.