worktree-isolation
// Manage git worktree lifecycle for safe, isolated parallel development.
$ git log --oneline --stat
stars:384
forks:73
updated:March 4, 2026
SKILL.mdreadonly
Worktree Isolation
Manage git worktree lifecycle for safe, isolated parallel development.
Agent
Worktree Manager - automaker-worktree-manager
Workflow
- Create new branch from base (feature/<id>)
- Set up git worktree in .worktrees/ directory
- Verify worktree isolation
- Install dependencies in worktree
- After completion, merge or preserve worktree
- Clean up merged worktrees, preserve failed ones
Inputs
projectName- Project namefeatureId- Feature identifierbaseBranch- Base branch for worktree creation
Outputs
- Worktree path, branch name, isolation status
Process Files
automaker-orchestrator.js- Phase 3 (setup) and cleanupautomaker-agent-execution.js- Stage 1automaker-review-ship.js- Stage 3 (merge)