What problem does it solve?
This Skill removes the guesswork from taking a SPEC.md and PLAN.md through implementation by orchestrating the entire workflow within an isolated git worktree, which keeps the main checkout untouched and ensures every change is traceable to a documented requirement.
Core Features & Use Cases
- Automated worktree setup: Detects the repo state, derives feature slug, creates a feature branch, and commits an empty starting point so every unit runs in a clean environment.
- Strict TDD execution: Parses PLAN.md units, writes tests-first, follows red-green-refactor, verifies against SPEC.md, and commits each unit with requirement traces and test counts.
- Verification, docs, and submission: Generates VERIFICATION.md, audits project docs for drift, syncs updates, posts GitHub issue comments if applicable, and pushes or merges the feature branch for final review.
- Use Case: When a user says “/new-task dev-docs/user-auth/,” the Skill loads the plan, runs each unit (optionally with --unit or --continuous), and hands off results or submits via PR.
Quick Start
Ask the assistant to run /new-task with your dev-docs/feature path so it loads the SPEC.md and PLAN.md, creates the worktree, and begins the red-green-refactor cycle.