What problem does it solve?
The git-workflow Skill prevents inconsistent branching, PR targeting, and release practices by standardizing how teams collaborate on dev-first feature delivery with clear promotion channels.
Core Features & Use Cases
- Dev-first branching rule: Forces feature work to branch from
dev rather than main, reducing integration risk.
- Consistent branch naming: Applies the
squad/{issue-number}-{kebab-case-slug} convention for traceability.
- Operational PR lifecycle: Guides issue labeling, draft PR creation, readiness signaling, and post-merge cleanup.
- Parallel work coordination: Uses
git worktree to run simultaneous issue changes safely within one repo without branch switching conflicts.
- Multi-repo dependency handling: Supports coordinated PRs across downstream repositories with dependency-first merge ordering.
Quick Start
Ask the assistant to generate a step-by-step plan to create a squad/195-fix-version-stamp-bug branch from dev, open a draft PR targeting dev, and set up safe parallel work using git worktree for two additional issues.