What problem does it solve?
This Skill enforces structured, atomic git commit messages so repositories maintain a clear, navigable history and PRs contain well-scoped changes that are easy to review and revert.
Core Features & Use Cases
- Conventional Commits Format: Guides the creation of type(scope): description subjects, optional bodies, and footers for breaking changes and issue references.
- Atomic Commit Guidance: Encourages single-purpose commits that build and test independently and can be squashed or reordered during interactive rebases.
- Pre-commit Workflow: Recommends verification steps such as formatting, linting, building, and testing before committing to avoid broken commits.
Quick Start
Create a Conventional Commit message for the staged Go changes that summarizes the primary change in imperative mood, includes a package scope when relevant, and adds issue references or breaking-change footers as needed.