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, allowing it to create and orchestrate its own team of agents on the fly. This development aims to improve handling of complex, high-value tasks by overcoming limitations of a single-agent approach.

Anthropic’s Claude has launched a new feature called dynamic workflows, enabling the AI to autonomously assemble and manage a team of agents tailored to complex tasks in real-time. This development addresses known limitations of single-agent models, such as incomplete work, bias, and goal drift, by orchestrating multiple specialized subagents to work collaboratively.

The feature allows Claude to generate a custom orchestration script—a small JavaScript program—that spawns, coordinates, and manages multiple subagents, each with its own focused brief and context window. These subagents can be assigned different roles, such as classifiers, verifiers, or specialists, depending on the task’s requirements. The process can dynamically decide which model to use for each subtask, and whether to run agents in isolated environments to prevent interference.

According to Anthropic, this capability is particularly useful for complex, high-value tasks such as code refactoring, research synthesis, or large-scale verification, where a single agent might underperform due to laziness, bias, or goal drift. The system can also resume interrupted workflows, making it suitable for long or iterative projects. The feature is built into Claude’s latest models, including Claude Opus 4.8, and is triggered via a command keyword, “ultracode.”

At a glance
updateWhen: announced March 2026
The developmentAnthropic’s Claude now builds and manages its own team of agents dynamically to better execute complex tasks, marking a significant step 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 of Autonomous Agent Team Building

This development represents a significant advancement in AI orchestration, enabling Claude to perform tasks that require multiple specialized perspectives and checks. It reduces reliance on human oversight for complex projects, potentially improving accuracy and efficiency in fields like research, software development, and quality assurance. However, it also raises questions about control, transparency, and the potential for unintended interactions among autonomous subagents.

Amazon

AI team management software

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Evolution of AI Workflow Capabilities

Prior to this, AI models like Claude operated as single agents, executing tasks within a fixed context window. Limitations became evident in long or complex projects, where issues like incomplete work, bias, and goal drift occurred. Anthropic’s development of dynamic workflows builds on earlier efforts to improve AI modularity and orchestration, following the release of Claude’s skills package and looping capabilities. The new feature completes a trilogy of innovations aimed at making AI more adaptable and reliable for high-stakes tasks.

While static multi-agent setups were possible via manual SDK configurations, the new dynamic workflow allows Claude to generate and run custom orchestration scripts automatically, greatly simplifying complex task management and expanding AI’s practical utility.

“This feature allows Claude to write its own harness, creating tailored agent teams on the fly for complex, high-value tasks.”

— Thorsten Meyer, AI researcher at Anthropic

AI for Bookkeeping Automation and Workflows: Automate Data Entry, Receipts, Categorization, Reconciliation, and Month-End Reporting Using AI and No-Code Tools, Save Hours Every Week for Bookkeepers

AI for Bookkeeping Automation and Workflows: Automate Data Entry, Receipts, Categorization, Reconciliation, and Month-End Reporting Using AI and No-Code Tools, Save Hours Every Week for Bookkeepers

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Unanswered Questions About Workflow Reliability

It is not yet clear how reliably Claude can manage complex workflows in practice, especially in unpredictable or adversarial scenarios. The system’s safety, transparency, and control mechanisms are still being evaluated, and real-world testing will determine its robustness and limitations.

Amazon

AI orchestration 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 deploy the dynamic workflow feature in more applications and gather user feedback. Further research will focus on refining the orchestration patterns, improving safety controls, and assessing performance across diverse high-stakes tasks. Broader adoption may follow once reliability and transparency are demonstrated.

Amazon

AI agent 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 generates a small JavaScript program that spawns and manages multiple subagents, each with specific roles and goals, tailored to the task at hand.

What types of tasks benefit most from dynamic workflows?

Complex, high-value tasks such as research synthesis, code refactoring, large-scale verification, and multi-step decision-making benefit most, as they require specialized perspectives and checks.

Are there safety concerns with autonomous agent teams?

Safety and control mechanisms are still under evaluation. The system’s ability to manage interactions among subagents and prevent unintended outcomes is a focus of ongoing testing.

Will this feature be available to all users?

Initially, it is likely to be limited to advanced users and specific applications, with broader access contingent on further stability and safety assessments.

Source: ThorstenMeyerAI.com

You May Also Like

One of Intel’s fastest desktop CPUs is $50 off

Intel’s flagship Core Ultra 7 270K Plus CPU is now available for $279.99, a $50 discount, offering top gaming performance at a lower price.

If Claude Fable stops helping you, you’ll never know

Anthropic’s new safeguards silently limit Claude’s effectiveness for frontier AI development, raising transparency and trust issues for users and developers.

Search as Code: Perplexity Is Right About the Future — Just Not First to It

Perplexity introduces Search as Code, enabling AI models to dynamically assemble search pipelines, claiming significant accuracy and efficiency gains.

The Backup Rule That Protects You From Total Data Loss

The backup rule that protects you from total data loss is essential—discover how this strategy can safeguard your files and why it’s crucial to understand.