Use when starting feature work that needs isolation from the current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification
What problem does it solve?
Feature development often requires experiments in parallel without polluting the main workspace. This Skill provides isolated git worktrees that share the same repository but operate independently to prevent cross-contamination of code and state.
Core Features & Use Cases
- Safe isolation: create dedicated worktree directories for a feature branch while preserving the main repository state.
- Smart directory selection: reuse existing worktrees or follow project preferences and safety checks to determine where to create new worktrees.
- Safety verification: ensure the chosen directory is ignored by git to prevent accidental commits of worktree contents.
- Automatic environment bootstrap: detect project type (Node, Rust, Python, Go, etc.) and install/build as needed for the new worktree.
- Use Case: parallel feature development, experimental experimentation, and safe branch isolation during implementation planning.
Quick Start
Create a new isolated worktree for the feature branch by following the guided prompts and safety checks.