What problem does it solve?
Enables safe, isolated git worktree merges by performing all operations in disposable worktrees, ensuring the main working tree remains untouched and stable during complex integration tasks.
Core Features & Use Cases
- Worktree lifecycle orchestration: DISCOVER, CREATE, SETUP, WORK, MERGE, VALIDATE, CLEANUP to manage multi-step merge sessions.
- Isolated merges in disposable worktrees: perform conflict resolution without affecting the main branch.
- Worktree path conventions and monorepo setup: uses .claude/worktrees/<name> with session branches like worktree-<name>, and optional symlinks for node_modules and env propagation.
- Parallel worktree operations for batch merges: create multiple worktrees in parallel for concurrent integrations.
- Conflict resolution in isolation: resolve conflicts in the worktree context with safe abort/recreate patterns.
Quick Start
Create a dedicated worktree session for a target merge, perform the merge in isolation, then validate and clean up.