What problem does it solve?
This Skill prevents messy, unsafe feature development by creating an isolated git worktree from the latest main branch and enforcing a TDD-style workflow with explicit planning gates.
Core Features & Use Cases
- Isolated feature worktree + branch: Creates a
feat/<name> branch and a corresponding worktree under ../worktrees/<app>/<name>, based on the provided feature description.
- Environment bootstrapping with safety sentinels: Runs a background environment setup agent that detects project type, installs dependencies, symlinks large source-content directories, and records success/failure via sentinel files.
- Guarded implementation workflow: Forces a research-first planning process, collects required user decisions via structured questions, drafts the plan in plan mode, then implements using strict RED → GREEN → REFACTOR with
make test.
Quick Start
Tell the assistant to start a feature named for what you want to build, and confirm the gated decisions when prompted.