Claude Code's dynamic workflows are the only feature that reached GA (general availability) in this update. They allow developers to define multi-agent coordination patterns: for example, a main agent can dynamically spawn several worker sub-agents, each responsible for different subtasks like code writing, testing, documentation generation, with sub-agents exchanging intermediate results through messages.
This feature was previously previewed in early versions of Claude Code, and its official release indicates that Anthropic has accumulated sufficient stability evidence. Dynamic workflows differ from LangChain's Agent Executor or CrewAI's hierarchical coordination by employing a 'dynamic' strategy – spawning and destroying sub-agents in real-time based on task requirements, rather than following a predefined fixed graph.
This is particularly well-suited for maintaining large code repositories: after analyzing the codebase, the main agent can simultaneously dispatch sub-agents for parallel fixes, refactoring, and testing, and finally merge results. The official tweet specifically mentions 'take on bigger jobs,' implying that the feature has undergone extensive internal testing.
It is important to note that dynamic workflows are currently integrated only in Claude Code, not extended to managed agents. This reflects product line differences: Claude Code, a command-line tool for developers, requires highly flexible parallel capabilities; managed agents emphasize predictability for long-term background tasks.