What problem does it solve? Turning a written specification with many interdependent tickets into working code requires coordinating parallel work, managing branches, and keeping merges consistent, which is slow and error-prone when done manually. ## Core Features & Use Cases - Task Graph Execution: Treats tickets as a dependency graph and always works the current frontier of unblocked tickets for maximum concurrency. - Subagent Orchestration: Runs exploration, implementer, and merger subagents, each implementer in its own worktree and branch, with sparse context-pointer communication. - End-to-End PR Workflow: Creates a draft PR linked to the spec issue, merges completed ticket branches, runs code review, fixes findings, and cleans up worktrees. - Use Case: Given a spec issue with ten tickets, some blocking others, the Skill spins up implementer subagents for all ready tickets in parallel, merges each as it finishes, and delivers one reviewed PR implementing the entire spec. ## Quick Start Implement the spec in issue #42 and its associated tickets as a single pull request using parallel implementer subagents.