What problem does it solve? Turning a written specification into working code often loses track of progress, skips requirements, or breaks across sessions. This Skill executes the task list in a spec's plan.md file step by step, tracking progress with checkboxes and recording development notes in spec.yaml so implementation stays aligned with the spec. ## Core Features & Use Cases - Task-by-task execution: Reads unchecked tasks from plan.md, implements each one, and marks it complete immediately after finishing. - Resumable sessions: Detects in-progress specs and resumes from the first unchecked task, preserving progress across interruptions. - Dependency and status gating: Verifies spec status (draft, ready, in-progress, done) and blocks implementation when required specs are not done. - Use Case: You have a spec named user-authentication with a generated plan. Run the implement step to have each task coded, checked off in plan.md, and a completion summary written to spec.yaml with all changed files listed. ## Quick Start Ask the agent to implement the user-authentication spec from the specs folder and follow the plan tasks.