What problem does it solve?
This Skill prevents you from accidentally polluting commits or leaking tracked worktree paths when you start isolated feature development using Git worktrees.
Core Features & Use Cases
- Safe project-local directory selection: Ensures chosen
.worktrees/ or worktrees/ paths are both git-ignored and not already tracked before creation.
- Post-create main-worktree verification: Detects whether the new worktree path appears in the main worktree’s status or tracked state immediately after
git worktree add.
- Guided setup and baseline tests: Auto-installs common dependencies and runs a clean test baseline based on project files, then reports readiness to implement a feature.
- Use Case: When implementing a risky change, create an isolated branch in a worktree so your current workspace stays stable and verifiable.
Quick Start
Use the Skill to set up a new isolated git worktree directory for your feature branch, run the appropriate dependency install and tests, and confirm the workspace is safe to proceed.