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 when agents or developers work in parallel. 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 Model: All feature work branches from dev using the squad/{issue-number}-{slug} naming convention, with draft PRs targeting dev and automated preview/insiders npm publishing. - Parallel Work with Git Worktrees: Create isolated worktrees per issue so multiple agents or developers can work simultaneously without branch switching or filesystem conflicts. - Multi-Repo Coordination: Clone downstream repos as siblings, link PRs across repositories, and use local linking (npm link, go replace, pip install -e) for cross-repo testing. - Use Case: A coordinator assigns three bug fixes at once. Each agent creates its own worktree from dev, commits on its own squad/{number}-{slug} branch, opens a draft PR to dev, and cleans up the worktree after merge. ## Quick Start Ask the AI to create a new issue branch from dev following the squad naming convention and open a draft PR targeting dev.