What problem does it solve?
This Skill standardizes a Squad-style Git workflow so teams avoid inconsistent branching, accidental work on main, and messy handoffs between development and release channels.
Core Features & Use Cases
- Dev-first branching: Starts all feature work from dev and keeps main reserved for released code.
- Issue-based branches and PRs: Uses squad/{issue-number}-{slug} branches with draft pull requests targeting dev.
- Parallel worktree coordination: Supports multiple simultaneous issues without branch-switching collisions.
- Promotion and cleanup guidance: Covers merging to dev, syncing insiders, releasing to main, and removing stale branches and worktrees.
- Use case: A team handling several bug fixes at once can create isolated worktrees, track each issue independently, and merge cleanly back into the integration branch.
Quick Start
Ask the Skill to set up a dev-first Git workflow for a specific issue, create the correct branch and draft pull request, and guide the merge and cleanup steps.