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 now creates its own teams of specialized agents dynamically for complex tasks, improving accuracy and reliability. This development marks a shift toward autonomous orchestration within AI models.

Anthropic’s Claude has launched a new feature called dynamic workflows, enabling the AI to automatically build and coordinate its own team of sub-agents for complex, high-value tasks. This development allows Claude to better handle long, multi-step projects by orchestrating specialized agents on the fly, marking a significant evolution in AI automation and orchestration.

The dynamic workflows feature is the third installment in Anthropic’s series on advanced agent capabilities, following skills packages and looping mechanisms. It enables Claude to generate custom orchestration scripts — small JavaScript programs — that spawn and coordinate multiple sub-agents, each with specific roles and isolated contexts.

These sub-agents can be assigned different models depending on the task, such as faster models for routine work and more powerful ones for judgment or verification. The system also supports parallel execution and resumption after interruption, making it suitable for complex, multi-stage projects. According to Anthropic, this approach addresses common failure modes in single-agent tasks, such as partial work, self-bias, and goal drift, by dividing work into focused, independent units.

Claude’s ability to write and run its own harnesses represents a move toward autonomous orchestration, with the potential to improve accuracy, consistency, and efficiency in tasks like research, fact-checking, and code review. The feature can be triggered via specific commands like ‘ultracode’ and employs orchestration patterns such as classify-and-act, fan-out-and-synthesize, and adversarial verification.

At a glance
updateWhen: announced March 2024
The developmentAnthropic’s Claude has introduced a new feature allowing it to assemble and manage its own team of agents during task execution.
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 Automation and Workflow Management

This development signifies a step toward more autonomous AI systems capable of managing complex, multi-agent workflows without human intervention. It could enhance the quality and reliability of AI-driven research, verification, and decision-making processes, especially in high-stakes environments where accuracy is critical. For organizations, it offers a way to scale AI applications more efficiently, reducing the need for manual orchestration and oversight.

However, it also raises questions about control, transparency, and safety, as AI models now generate and manage their own teams dynamically. The approach may influence future AI design, pushing toward more self-managing systems that can adapt to complex tasks in real time.

Amazon

AI multi-agent workflow automation tools

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Evolution of Multi-Agent AI Capabilities

The concept of orchestrating multiple agents within AI systems has been evolving over recent years, with earlier efforts focusing on static, hand-crafted workflows. Anthropic’s recent release builds on this foundation, introducing dynamic workflows that are generated and adapted by the AI itself during task execution. This follows a series of developments in the AI community aimed at overcoming the limitations of single-agent models, such as incomplete work, bias, and goal erosion over long tasks.

Previous iterations involved manual setup or static scripts, but the new capability allows Claude to reason about the most effective orchestration pattern for each task, tailoring its approach dynamically. This aligns with broader trends toward more flexible, context-aware AI systems capable of managing complex processes autonomously.

Anthropic emphasizes that this feature is intended for high-value, complex projects rather than simple tasks like fixing typos, and it is built with safety considerations in mind, including the ability to pause and resume workflows.

“Claude’s ability to autonomously assemble and manage its own team of agents represents a significant leap in AI orchestration, enabling more reliable handling of complex, multi-stage tasks.”

— Thorsten Meyer, AI researcher at Anthropic

Amazon

AI orchestration software for complex tasks

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Unanswered Questions About Safety and Control

It is not yet clear how Anthropic plans to address safety, oversight, and transparency with AI-managed teams, especially in sensitive or high-stakes environments. The long-term reliability and potential unintended behaviors of self-orchestrating AI systems remain under investigation, and further testing is needed to understand the full implications of this capability.

Amazon

JavaScript frameworks for AI agent coordination

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Next Steps for Deployment and Evaluation

Anthropic is expected to continue testing and refining the dynamic workflows feature, with plans to evaluate its performance across various complex applications. Future updates may include safety controls, user interfaces for better oversight, and expanded use cases. Monitoring how organizations adopt and adapt this technology will be crucial in assessing its real-world impact.

Amazon

AI research and fact-checking 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 small JavaScript programs called workflows that spawn and coordinate multiple sub-agents, each with specific roles and isolated contexts, to handle different parts of a complex task.

What types of tasks benefit most from dynamic workflows?

High-value, complex tasks such as research synthesis, fact-checking, code review, and multi-step decision processes are most suitable, especially when dividing work improves accuracy and efficiency.

Are there safety concerns with autonomous agent teams?

Anthropic acknowledges safety considerations but details on oversight mechanisms are still emerging. The system is designed for controlled, high-value tasks with safety in mind.

Can users customize or control how the workflow is built?

Yes, users can trigger specific orchestration patterns via commands like ‘ultracode,’ and can influence the structure by selecting different patterns or specifying task parameters.

Source: ThorstenMeyerAI.com

You May Also Like

When AI Builds Itself: Inside Anthropic’s Evidence on Recursive Self-Improvement

Anthropic presents data suggesting AI systems are increasingly capable of automating research tasks, raising the possibility of recursive self-improvement if human oversight diminishes.

Jack Ma’s Financial Status in 2025: What Remains After Alibaba Exit

By 2025, Jack Ma’s diversified investments and strategic moves have reshaped his financial landscape, leaving many questions about what remains after Alibaba’s exit.

The Model Is Only 10%: The Real Lesson of the New SDLC

A new Google whitepaper reveals that in AI-driven software development, the model accounts for only 10% of system behavior; verification and configuration are crucial.

The Local-First Agentic Operator

A new approach enables a single operator, using agentic AI, to build and manage multiple software products across domains, previously requiring organizations.