What problem does it solve?
This Skill standardizes Git workflows across teams by providing a clear set of branching rules, commit conventions, and PR practices to reduce merge conflicts and streamline reviews.
Core Features & Use Cases
- Branching Strategy: Always branch from origin/main to ensure consistency across environments; supports git worktrees; consistent branch naming conventions (e.g., feature/, fix/, docs/).
- Commit Message Format: Enforces Conventional Commits style to improve changelog generation and traceability.
- PR Creation & Post-Merge Cleanup: Provides a repeatable PR workflow and post-merge steps to clean up branches and keep main in a healthy state.
- Use Case: A feature team starts from origin/main, creates a feature branch, commits with conventional messages, opens a PR, and upon merge performs cleanup across workers.
Quick Start
Use the git-workflow skill to standardize your team's Git practices. Start by updating your local repo to the latest main, create a feature branch, commit with a conventional message, push, and open a PR.