What problem does it solve? Running multiple AI agents on the same repository at once causes file conflicts and agents overwriting each other's work. This Skill isolates each task in its own git worktree with its own branch, so parallel agents never collide and each change merges back through its own PR. ## Core Features & Use Cases - Isolated Worktree Orchestration: Creates one git worktree and branch per task from a resolved base branch (main, an epic integration branch, or a release tag for hotfixes) before any agent starts. - Parallel Agent Dispatch: Spawns multiple agents simultaneously via the Task tool, each with a mandatory preamble forcing it to cd into its worktree and verify pwd and branch before working. - Base Branch Resolution: Supports --base overrides, epic integration branch detection, and hotfix tagging, ensuring each PR targets the branch it was cut from. - Use Case: Dispatch three tasks at once — @Kai implementing a login screen off an epic branch, @Sentinel setting up monitoring off main, and @Link refactoring a network module — each producing an independent PR without merge conflicts. ## Quick Start Ask the agent to dispatch @Kai to implement the login screen and @Sentinel to set up monitoring dashboards in parallel using git worktrees.