install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/methodologies/automaker/skills/worktree-isolation" ~/.claude/skills/a5c-ai-babysitter-worktree-isolation && rm -rf "$T"
manifest:
library/methodologies/automaker/skills/worktree-isolation/SKILL.mdsource content
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
- Project nameprojectName
- Feature identifierfeatureId
- Base branch for worktree creationbaseBranch
Outputs
- Worktree path, branch name, isolation status
Process Files
- Phase 3 (setup) and cleanupautomaker-orchestrator.js
- Stage 1automaker-agent-execution.js
- Stage 3 (merge)automaker-review-ship.js