Claude Code Dynamic Workflows: Parallel Subagents & UltraCode Mode

Claude Code now supports dynamic workflows that let the agent orchestrate tens to hundreds of parallel subagents in a single session, checking work before anything reaches you. Available in research preview in the CLI, Desktop, and VS Code extension for Max, Team, and Enterprise plans, plus the API (Amazon Bedrock, Vertex AI, Microsoft Foundry).
How to use
- Ask directly: "Create a workflow"
- Enable UltraCode via the effort menu (sets effort to
xhigh), letting Claude auto-decide when to spawn a workflow.
Workflows consume substantially more tokens than a typical session — start scoped.
Capabilities shown in early access
- Codebase-wide bug hunts: parallel search across a repo, then independent verification on every finding.
- Large migrations: framework swaps, API deprecations, language ports spanning thousands of files end-to-end.
- Double-checked results: independent solution attempts and adversarial agents that try to break the result before delivering it.
Real-world example: Bun rewrite
Jarred Sumner used dynamic workflows to port Bun from Zig to Rust — ~750,000 lines of Rust in 11 days, with 99.8% of existing tests passing. Workflow steps:
- Map Rust lifetimes for every struct field.
- Write every
.rsfile via hundreds of parallel agents, each with two reviewers. - Fix loop driving build/test until clean.
- Overnight workflow to eliminate unnecessary data copies, opening a PR for each fix.
How it works
Claude plans dynamically from your prompt, breaks the task into subtasks, fans work across parallel subagents, checks results independently, and iterates until answers converge — producing a single coordinated answer.
📖 Read the full source: HN AI Agents
👀 See Also

Building an Autonomous Research Agent with C# and Local LLMs
A C# research agent automates URL processing with local LLMs using Ollama and llama3.1:8b, generating structured markdown reports from web searches.

Claude Code Prompt Improver v0.5.3: Plan Mode Refactor and Subagent-First Research
v0.5.3 adds a PreToolUse hook for plan mode readability (clean rewrites, no decision history) and moves vague prompt research to Task/Explore subagents on Haiku to save main-context tokens. The plugin now works on Windows and has 1.4K+ GitHub stars.

Self-Hosted Memory Layer for Claude Runs Free on Cloudflare
A Cloudflare Worker MCP server lets Claude remember and recall notes via semantic search using Workers AI and Vectorize — all on free tier.

Fixing OpenClaw Browser CAPTCHAs with Camoufox and CLI Wrapper
OpenClaw's built-in Chromium browser triggers bot detection through Chrome DevTools Protocol, JavaScript injection artifacts, and hardware fingerprinting inconsistencies. The solution uses Camoufox (a Firefox fork) modified at the C++ level and wrapped in a CLI that returns accessibility-tree snapshots to reduce token usage.