This skill should be used when managing Git worktrees for isolated parallel development. It handles creating, listing, switching, and cleaning up worktrees with a simple interactive interface.
From soleurnpx claudepluginhub jikig-ai/soleur --plugin soleurThis skill uses the workspace's default tool permissions.
scripts/worktree-manager.shThis skill provides a unified interface for managing Git worktrees across your development workflow. Whether you're reviewing PRs in isolation or working on features in parallel, this skill handles all the complexity.
.claude/hooks/worktree-write-guard.sh) -- blocks Write/Edit to main checkout when worktrees existNEVER call git worktree add directly. Always use the worktree-manager.sh script.
The script handles critical setup that raw git commands don't:
.env, .env.local, .env.test, etc. from main repo.worktrees is in .gitignorecore.bare = true) and derives GIT_ROOT via --absolute-git-dir instead of --show-toplevelplugins/soleur/scripts/resolve-git-root.sh helper -- all scripts that need GIT_ROOT should source this helper instead of inlining their own detection logicAfter creating a worktree, run npm install if the project has a package.json — worktrees do not share node_modules/ with the main working tree, and build commands (npx @11ty/eleventy, etc.) will silently hang instead of erroring.
# ✅ CORRECT - Always use the script
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh create feature-name
# ❌ WRONG - Never do this directly
git worktree add .worktrees/feature-name -b feature-name main
Use this skill in these scenarios:
soleur:review): If NOT already on the target branch (PR branch or requested branch), offer worktree for isolated reviewsoleur:work): Always ask if user wants parallel worktree or live branch workThe skill is automatically called from the soleur:review and soleur:work skills:
# For review: offers worktree if not on PR branch
# For work: always asks - new branch or worktree?
You can also invoke the skill directly from bash:
# Create a new worktree (copies .env files automatically)
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh create feature-login
# List all worktrees
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh list
# Switch to a worktree
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh switch feature-login
# Copy .env files to an existing worktree (if they weren't copied)
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh copy-env feature-login
# Clean up completed worktrees
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh cleanup
create <branch-name> [from-branch]Creates a new worktree with the given branch name.
Options:
branch-name (required): The name for the new branch and worktreefrom-branch (optional): Base branch to create from (defaults to main)Example:
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh create feature-login
What happens:
list or lsLists all available worktrees with their branches and current status.
Example:
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh list
Output shows:
switch <name> or go <name>Switches to an existing worktree and cd's into it.
Example:
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh switch feature-login
Optional:
cleanup or cleanInteractively cleans up inactive worktrees with confirmation.
Example:
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh cleanup
What happens:
sync-bare-files or syncSyncs stale on-disk files from git HEAD in a bare repo. Only needed when the repo uses core.bare=true — on-disk files at the bare root become stale after merges since git never updates them. Auto-called after cleanup-merged cleans branches in bare repo context.
Example:
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh sync-bare-files
What it syncs:
AGENTS.md, CLAUDE.md (session-start instructions)plugins/soleur/AGENTS.md, plugins/soleur/CLAUDE.mdplugins/soleur/hooks/* (plugin hooks: stop-hook, welcome-hook, hooks.json).claude/settings.json (permission rules).claude/hooks/*.sh (PreToolUse hooks)plugins/soleur/scripts/resolve-git-root.shworktree-manager.sh script itselfImportant: Any file that Claude Code executes at runtime from the bare repo root (via ${CLAUDE_PLUGIN_ROOT} or direct path) must be added to the sync list in worktree-manager.sh. Stale on-disk files cause silent regressions.
# Claude Code recognizes you're not on the PR branch
# Offers: "Use worktree for isolated review? (y/n)"
# You respond: yes
# Script runs (copies .env files automatically):
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh create pr-123-feature-name
# You're now in isolated worktree for review with all env vars
cd .worktrees/pr-123-feature-name
# After review, return to main:
cd ../..
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh cleanup
# For first feature (copies .env files):
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh create feature-login
# Later, start second feature (also copies .env files):
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh create feature-notifications
# List what you have:
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh list
# Switch between them as needed:
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh switch feature-login
# Return to main and cleanup when done:
cd .
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh cleanup
soleur:reviewInstead of always creating a worktree:
1. Check current branch
2. If ALREADY on target branch (PR branch or requested branch) → stay there, no worktree needed
3. If DIFFERENT branch than the review target → offer worktree:
"Use worktree for isolated review? (y/n)"
- yes → call git-worktree skill
- no → proceed with PR diff on current branch
soleur:workAlways offer choice:
1. Ask: "How do you want to work?
1. New branch on current worktree (live work)
2. Worktree (parallel work)"
2. If choice 1 → create new branch normally
3. If choice 2 → call git-worktree skill to create from main
If you see this, the script will ask if you want to switch to it instead.
Switch out of the worktree first (to main repo), then cleanup:
Navigate to the repository root directory, then run:
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh cleanup
See where you are:
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh list
If a worktree was created without .env files (e.g., via raw git worktree add), copy them:
bash ./plugins/soleur/skills/git-worktree/scripts/worktree-manager.sh copy-env feature-name
Navigate back to the repository root directory.
.worktrees/
├── feature-login/ # Worktree 1
│ ├── .git
│ ├── app/
│ └── ...
├── feature-notifications/ # Worktree 2
│ ├── .git
│ ├── app/
│ └── ...
└── ...
.gitignore (updated to include .worktrees)
git worktree add for isolated environments