What problem does it solve? Coordinating the implementation of a large specification across many interdependent tickets is slow and error-prone when done sequentially, and parallel work often causes merge conflicts and duplicated context. ## Core Features & Use Cases - Task Graph Execution: Treats tickets as a dependency graph with blocking relationships, always working on the frontier of ready tickets. - Concurrent Subagents: Runs implementer subagents in parallel, each in its own git worktree and branch, then merges results with a merger subagent. - Context Pointer Communication: Keeps subagent communication sparse by referencing the spec, tickets, research notes, and prior commits instead of duplicating information. - Use Case: Given a spec issue with ten linked tickets, the Skill creates a draft PR, fans out implementer subagents as tickets unblock, runs a code review pass, and delivers one review-ready PR. ## Quick Start Ask the agent to implement the spec from a given issue and its associated tickets as a single pull request.