What problem does it solve? AI coding sessions lose track of queued work and mix implementation with verification, producing unreviewed code and vanished progress. This Skill reads tasks from a Markdown scrum board, resolves each to its full Epic/Story/Task context, and drives a developer agent through implementation with enforced scope tiers, file locking, and rollback on failure. ## Core Features & Use Cases - Scoped task execution: Routes each task to inline, light, or full task pipelines based on execution_scope frontmatter and configurable thresholds in scope-thresholds.json. - Story-bundle mode: Executes all tasks of a story sequentially in one shared worktree with an epic-level lock, atomic bundle manifests, cross-bundle conflict detection, and git-anchor rollback on failure. - Scope-creep detection: Runs an intent-vs-diff check comparing changed files against the task description, writing non-blocking conflict reports and divergence flags. - Use Case: A developer types /do E32_S05 to execute an entire story; the Skill locks the epic, spawns one developer subagent in a shared worktree, updates each task's board status, and rolls back cleanly if any task fails. ## Quick Start Ask the agent to run /do and pick the next task from the scrum board todo list to implement it.