What problem does it solve?
Squad-based teams often struggle with coordination and inconsistent branching strategies, which leads to integration pain and release risk. This Skill defines a deterministic, squad-oriented Git workflow that uses a dev-first two-branch model to align development effort with stable delivery.
Core Features & Use Cases
- Two-branch model: All feature work starts from the dev branch rather than main, enabling safer integration.
- Branch naming conventions: Issue branches MUST follow squad/{issue-number}-{kebab-case-slug}.
- PR and release flow: Clear guidance on drafting PRs, merging into dev, and promoting to main for releases.
- Multi-issue coordination: Supports parallel work using per-issue branches and dedicated worktrees to avoid collisions.
Quick Start
Start from dev, create a new squad/{issue-number}-{slug} branch, implement changes, and open a draft PR targeting dev.