git-commit-helper
Installation
SKILL.md
Git Commit Helper
Overview
Enforce conventional commit standards, guide semantic versioning decisions, generate changelogs, and ensure commit message quality. This skill provides a structured approach to version control communication that enables automated tooling and clear project history.
Phase 1: Analyze Changes
Analyze the staged diff to understand what was changed:
git diff --cached --stat
git diff --cached
- Identify the files and modules affected
- Determine the nature of the change (new feature, bug fix, refactoring, etc.)
- Check if the change is breaking (API changes, removed features, changed contracts)