What problem does it solve? Teams working on multiple issues simultaneously often struggle with branch chaos, PRs targeting the wrong base branch, and filesystem collisions between parallel workstreams. This Skill enforces a consistent three-branch model (main, dev, insiders) with clear rules for branching, PRs, and cleanup. ## Core Features & Use Cases - Dev-First Branching: All feature branches follow the squad/{issue-number}-{slug} convention, branch from dev, and open draft PRs targeting dev with issue linkage. - Parallel Work with Git Worktrees: Run multiple agents on separate issues simultaneously using isolated worktrees, avoiding branch-switching and filesystem conflicts. - Multi-Repo Coordination: Coordinate dependent PRs across sibling repositories with local linking (npm link, go replace, pip install -e) for pre-merge testing. - Use Case: A coordinator assigns three bugs to three agents at once. Each agent creates a worktree from dev, commits fixes, pushes a branch, and opens a draft PR to dev — all without interfering with each other. ## Quick Start Create a new issue branch from dev following the squad naming convention and open a draft PR targeting dev.