📊 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

Anthropic’s Claude has launched a new feature called dynamic workflows, enabling it to create and orchestrate multiple sub-agents for complex tasks. This development aims to overcome limitations of single-agent approaches, especially on high-value, multi-step projects. For example, you can learn how to run a marketing team with AI project management.

Anthropic’s Claude now builds its own team of agents on the fly, enabling it to better handle complex, multi-step tasks. This new feature, called dynamic workflows, allows Claude to orchestrate multiple sub-agents with specialized roles, improving performance in high-value projects. The development is part of a broader effort to manage AI coordination and task execution without human intervention.

The dynamic workflows feature is a recent addition to Claude, designed to address common failure modes seen in single-agent operations, such as agentic laziness, self-preferential bias, and goal drift. Instead of executing tasks within a single context window, Claude now writes and runs small JavaScript programs that spawn and coordinate multiple subagents, each with a focused brief and isolated context.

Mechanically, this involves Claude generating a custom harness that can decide which model to assign to each sub-agent, whether to run them in parallel or sequence, and how to reschedule interrupted workflows. This kind of orchestration is similar to strategies discussed in AI project management best practices. These workflows can adapt dynamically, tailoring the orchestration to the specific complexity of the task, such as deep research routines, fact-checking, or code refactoring. The feature is particularly useful for tasks requiring multi-layered verification, parallel processing, or competitive approaches.

At a glance
updateWhen: announced recently, with deployment ong…
The developmentClaude now autonomously constructs and manages its own team of agents during task execution, marking a significant shift 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 Task Management and Reliability

This development marks a step forward in AI autonomy and reliability. By enabling Claude to assemble its own team, it reduces the risk of partial work, bias, and goal erosion common in single-agent workflows. This approach mirrors human team management strategies, making AI more effective for high-stakes, complex projects. It also opens new possibilities for automating multi-faceted workflows that previously required manual orchestration, potentially transforming how organizations deploy AI for research, development, and operational tasks.

AI for Practical Project, Program, and Change Management: A Practical Guide to AI-Enabled Delivery, PMO Discipline, Benefits Realization, and Enterprise ... (Enterprise IT and AI Modernization Series)

AI for Practical Project, Program, and Change Management: A Practical Guide to AI-Enabled Delivery, PMO Discipline, Benefits Realization, and Enterprise … (Enterprise IT and AI Modernization Series)

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Evolution of AI Orchestration and Multi-Agent Systems

Anthropic’s recent innovations build on prior work in AI skills, looping mechanisms, and static workflows. The concept of dynamic workflows completes a trilogy aimed at enabling AI systems to handle tasks with increasing complexity and independence. Previously, AI agents operated within fixed parameters or simple chaining; now, Claude can generate custom orchestration scripts that adapt to specific job requirements. This capability aligns with broader trends in AI towards multi-agent collaboration and autonomous task execution.

Similar developments in the field include multi-agent systems in research labs and industry, but Claude’s approach emphasizes on-the-fly construction and tailored workflows, making it more flexible and accessible for practical use cases.

“Claude’s new ability to self-assemble its own agent team is a significant leap toward autonomous AI systems capable of managing complex workflows without human oversight.”

— Thorsten Meyer, AI researcher

Amazon

multi-agent workflow automation tools

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Unanswered Questions About Workflow Robustness and Use Cases

It is not yet clear how well Claude’s dynamic workflows perform in real-world, high-stakes environments over extended periods. The scalability, error handling, and safety mechanisms of these autonomous agent teams remain to be fully tested and validated. Additionally, how users will adopt and customize these workflows in practical settings is still emerging, and there is limited public data on deployment outcomes at this stage.

Amazon

AI task orchestration platform

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Next Steps for Deployment and Evaluation of Autonomous Agent Teams

Anthropic plans to continue testing Claude’s dynamic workflows across various complex tasks, including research, code development, and document verification. Future updates may include enhanced safety controls, user interface tools for workflow customization, and performance benchmarks. Monitoring real-world use cases will be essential to assess reliability and refine the orchestration capabilities.

Amazon

AI collaboration tools for complex projects

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 and executes 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 this feature?

High-value, multi-step tasks such as research synthesis, fact-checking, code refactoring, and complex decision-making are most likely to benefit, especially where accuracy and thoroughness are critical.

Are there safety or reliability concerns with autonomous agent teams?

While promising, the robustness, error handling, and safety mechanisms of these autonomous workflows are still being evaluated. Their effectiveness in long-term, real-world applications remains under observation.

Will users be able to customize these workflows?

Yes, future updates are expected to include tools for users to tailor workflows to specific needs, though details are still being developed and tested.

When will this feature be widely available?

Deployment is ongoing, with broader availability likely after further testing and validation, possibly within the next few months.

Source: ThorstenMeyerAI.com

You May Also Like

Cheese Paper: a text editor specifically designed for writing

Cheese Paper is a dedicated writing tool for authors, supporting seamless syncing, note management, and a markdown-based workflow for fiction writers.

Reflections on Software Engineering in the Age of AI

An analysis of how AI is transforming software development workflows, the challenges faced by developers, and what this means for the industry’s future.

When a Content Network Starts Publishing to Itself

Discover why content networks begin publishing to themselves, the risks involved, and how this shift transforms operational and strategic thinking.

ChannelHelm – Drop a video. Get a publishing kit.

ChannelHelm introduces a new tool that automates the creation of multiple social media assets from a single video, all stored locally without cloud reliance.