What problem does it solve?
Parallel agent teams and delegated subagents can accidentally modify the main repository, cause merge conflicts, and interfere with each other's builds and tests; this Skill provides an isolated, gitignored workspace per task to prevent those issues and enforce safe workflows.
Core Features & Use Cases
- Create isolated worktrees in a gitignored directory following a predictable naming convention so each task has its own branch and filesystem scope.
- Environment setup and baseline verification that auto-detects project type (Node, Rust, .NET, Python, Go) and runs dependency installation and baseline tests before implementation.
- Lifecycle management including safe creation, verification hooks that must pass before changes, and cleanup commands to remove worktrees and prune refs after merge.
- Delegation integration for spawning per-group worktrees during parallel dispatch, tracking progress, and enforcing pre-change verification for subagents.
Quick Start
Create a gitignored worktree for task 001-api, install dependencies, and verify baseline tests before dispatching subagents.