What problem does it solve? Teams often produce inconsistent commit messages, unclear PR titles, and tangled branch histories, making code reviews and release tracking difficult. This Skill standardizes Git workflow conventions so every commit, PR, and release follows the same predictable format. ## Core Features & Use Cases - Conventional Commits enforcement: Provides commit message formats with types like feat, fix, docs, refactor, test, and chore, plus subject-line rules and body guidelines. - PR workflow and branching strategy: Defines squash-and-merge policy, trunk-based development on main, and branch naming patterns like user/feat/feature-name. - Semantic Versioning releases: Specifies vMAJOR.MINOR.PATCH tagging with annotated git tag commands. - Use Case: When finishing a bug fix, ask the AI to write the commit message and it will produce a properly formatted message like "fix(cli): correct map file path resolution on Windows" with an explanatory body. ## Quick Start Ask the AI to write a conventional commit message and PR title for the changes you just made to the repository.