What problem does it solve?
This Skill helps engineers create isolated, repeatable workspaces for feature development by using Git worktrees and enforcing safety checks, preventing accidental changes to the main workspace.
Core Features & Use Cases
- Directory selection follows a clear priority: prefer existing .worktrees, then worktrees, then project configuration, otherwise prompt the user.
- Safety verification ensures the chosen directory is ignored by git before creating a worktree.
- Automatic project setup detects common project files (package.json, Cargo.toml, requirements.txt, pyproject.toml) and runs appropriate setup steps.
- Flexible location options support both project-local and global worktree directories.
- Use Case: Start a feature work in isolation without disrupting the main branch, and automatically verify baseline tests after creation.
Quick Start
Create a new isolated git worktree for the current project on a feature branch and run the project setup automatically.