What problem does it solve? Working on multiple branches or running parallel AI agents in a single repository causes constant branch switching, stashing, and merge conflicts. This Skill manages git worktrees so each agent or task gets its own directory and branch without disturbing the main workspace. ## Core Features & Use Cases - List Worktrees: Run /worktree to see all registered worktrees with their branches and commits. - Create Agent Worktrees: Run /worktree new to create a sibling directory (e.g., repo.wt-1) with a dedicated agents/N branch, avoiding VS Code indexing issues from nested worktrees. - Path Lookup & Removal: Run /worktree N to get a worktree's path and VS Code open command, or /worktree remove N to clean it up with optional branch deletion. - Use Case: You want three AI agents working on separate features simultaneously. Use /worktree new three times to create isolated directories, open each in its own VS Code window, and sync results back via pull requests to main. ## Quick Start Ask the assistant to create a new worktree for parallel agent work by saying "/worktree new" and it will set up a sibling directory with its own branch.