plugins/claude-code-expert/skills/worktree-management/SKILL.md
Git worktree creation, agent isolation, parallel task execution with EnterWorktree/ExitWorktree, branch-per-worktree patterns, and cleanup lifecycle for Claude Code
npx skillsauth add markus41/claude worktree-managementInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Git worktrees let each agent or task operate on its own branch without interfering with the main working directory. Claude Code exposes this through EnterWorktree / ExitWorktree tools.
A worktree is a second (or third, or tenth) checked-out copy of the same repository, each on its own branch. Agents working in separate worktrees:
main (or your feature branch) undisturbedThis project itself runs in a worktree at .claude/worktrees/<branch-name>.
# Create a worktree for a task branch
git worktree add .claude/worktrees/<name> -b <branch>
# List all active worktrees
git worktree list
# Remove a worktree (branch must be merged or explicitly deleted)
git worktree remove .claude/worktrees/<name>
git worktree prune # remove stale entries
Switches the agent's working context into an isolated worktree. Subsequent tool calls (Read, Write, Bash, etc.) run inside that worktree's directory.
{
"tool": "EnterWorktree",
"params": {
"branch": "feat/my-task",
"worktreePath": ".claude/worktrees/feat-my-task"
}
}
If the branch does not exist, EnterWorktree creates it from the current HEAD. If the worktree directory already exists, the agent re-enters it.
Returns the agent to the main working directory. Always pair with EnterWorktree in the same task — leaving a worktree open wastes disk and can block git worktree remove.
{
"tool": "ExitWorktree"
}
The Agent tool's isolation: "worktree" parameter handles this automatically:
{
"tool": "Agent",
"params": {
"isolation": "worktree",
"prompt": "Implement the auth middleware changes on a clean branch."
}
}
Claude Code creates the worktree, runs the sub-agent inside it, then either:
Each parallel task gets its own branch:
main
├── .claude/worktrees/feat-auth-refactor ← branch: feat/auth-refactor
├── .claude/worktrees/fix-token-expiry ← branch: fix/token-expiry
└── .claude/worktrees/docs-update-api ← branch: docs/update-api
Name the worktree directory after the branch slug. This makes git worktree list readable and git worktree remove unambiguous.
Fan-out multiple agents across independent tasks:
Orchestrator (main worktree)
│
├── Agent A → worktree/feat-part-1 (writes auth.ts)
├── Agent B → worktree/feat-part-2 (writes middleware.ts)
└── Agent C → worktree/docs-update (writes README.md)
│
└── Orchestrator merges or PRs each branch after completion
Send all three in a single Agent tool call (parallel launch). The orchestrator collects results and decides merge order.
EnterWorktree or Agent isolation: worktree creates the worktreeExitWorktree or natural agent completiongit merge or open a PR for the branchgit worktree remove + git branch -d after mergeNever leave worktrees open indefinitely. Stale worktrees accumulate disk usage and cause git worktree prune noise.
Before git worktree remove <path>:
git -C <path> status)# Check worktree status before removal
git -C .claude/worktrees/<name> status
git worktree remove .claude/worktrees/<name>
git branch -d <branch> # safe: refuses if unmerged
git branch -D <branch> # force: use only if abandoning
Worktrees share the same .git directory. Two agents cannot check out the same branch in different worktrees — git will refuse with fatal: '<branch>' is already checked out.
Rules:
| Situation | Use worktree | Use main context | |-----------|:---:|:---:| | Long-running tasks (>10 min) | ✓ | | | Tasks touching many files | ✓ | | | Parallel independent tasks | ✓ | | | Quick single-file fix | | ✓ | | Research-only (read-only) | | ✓ | | Task must share context with parent | | ✓ |
When using the Claude Agent SDK (Python/TypeScript) rather than the CLI, the equivalent of a worktree is a forked session. Sessions are stored at:
~/.claude/projects/<url-encoded-cwd>/<session-id>.jsonl
Fork a session to branch history without touching the original:
# Python
result = await query(prompt="implement auth changes", options={"forkSession": True})
# → new session branched from current history; original session untouched
// TypeScript
const result = await query({ prompt: "implement auth changes", options: { forkSession: true } });
Worktree vs forked session:
| | Git worktree | Forked session |
|---|---|---|
| Isolates | File system state (branch) | Conversation history |
| Parallel? | Yes — each has own branch | Yes — each has own session ID |
| Resumable? | Via EnterWorktree | Via resume: sessionId |
| Cleanup | git worktree remove | Sessions expire or are deleted |
| Use in | Claude Code CLI | Agent SDK programmatic use |
For CLI-based orchestration (this plugin's default), use worktrees. Use forkSession when building applications on top of the SDK.
To resume a specific session: resume: "<session-id>" in SDK options, or --resume in /cc-orchestrate (reads .claude/active-task.md for the last wave's session ID).
The cc-orchestrate command uses isolation: "worktree" for any template that fans out to multiple implementation agents. Each agent gets its own branch. The orchestrator collects the branch names and opens PRs or merges in sequence.
See skills/agent-teams/SKILL.md for full multi-agent coordination patterns.
tools
Managing project and task state in .claude/projects/{id}/ with atomic writes and session continuity
tools
Deep research before task execution using 4-source protocol: codebase→Perplexity→Context7→Firecrawl
tools
Validating task completion against acceptance criteria with per-type automated checks
tools
Using and creating project templates for webapp, API, ML pipeline, mobile, and infrastructure projects