DAG from a plan
A design document becomes a directed acyclic graph of PR-sized chunks. The orchestrator topologically sorts dependencies before anything runs — independent nodes launch together.
Parallel orchestration
Split the work. Run it all at once. Ship a stack.
Agent workflows take a large job — a design doc, a feature plan, a research question — and fan it out to specialized subagents running in parallel. Each worker gets an isolated git worktree, a scoped assignment, and a structured result to hand back to the orchestrator. Built for Claude Code agent teams.
Capabilities
A design document becomes a directed acyclic graph of PR-sized chunks. The orchestrator topologically sorts dependencies before anything runs — independent nodes launch together.
Each implementer works in its own git worktree — no stomping on shared files. Commits land as discrete SHAs the orchestrator fetches and assembles into a branch stack.
Branches stack in dependency order. Mandatory reviewer subagents run before merge-ready. Output is a Graphite PR chain, not a pile of loose diffs.
Worktree lanes
Task board
Three ways Claude Code composes agents — each maps to a different scope and lifecycle in the orchestrator.
| Primitive | Scope | Lifecycle | Best for |
|---|---|---|---|
| Subagent | Single task, returns result to parent | Spawn → execute → report → terminate | Reviewer passes, focused research, one-shot codegen |
| Teammate | Shared session, persistent context | Join team → collaborate → hand off state | Long-running implementers in parallel worktrees |
| Workflow | Full DAG, orchestrator-owned | Parse plan → topo-sort → fan-out → stack | Design doc → multi-PR feature with dependency chain |