What problem does it solve? Long coding sessions lose context when a whole plan is read at once or code is built directly in the main session, leaving no room for review and pull request work. This Skill runs a plan task by task through delegated contexts so the session that commits stays small and resumable. ## Core Features & Use Cases - Task-by-task execution: Reads only the plan's frame and one task at a time, tracking landed work via Plan-task: commit trailers so a cleared context can resume. - Delegated builds and waves: Dispatches builds to an implementer agent with per-task budgets, running independent tasks in parallel git worktrees and cherry-picking green commits in plan order. - Drift and failure repair: Routes plan drift to a repair delegate, failed runs to a bug fixer, and ends with a branch review whose findings are fixed before shipping. - Use Case: After a planning session produces docs/plans/add-auth.md, invoke the Skill on that plan; it resolves the workspace, builds each task in a delegate, commits each green task, runs final verification, and hands off a reviewed branch. ## Quick Start Ask the AI to run the plan at docs/plans/add-auth.md using the implementing skill and commit each task as it goes green.