What problem does it solve?
This Skill helps you create well-structured and atomic git commits by grouping changes based on their underlying intent, rather than just by file. This leads to a cleaner, more understandable, and maintainable commit history.
Core Features & Use Cases
- Intent-Based Committing: Organizes changes into logical units of work.
- Conventional Commit Guidance: Adheres to standard commit message formats (e.g.,
feat:, fix:).
- Atomic Commits: Ensures each commit represents a single, independent change.
- Use Case: When you've made multiple unrelated changes (e.g., a new feature, a bug fix, and documentation updates), this skill guides you to create separate, focused commits for each, making it easier to revert or cherry-pick changes later.
Quick Start
Stage and commit the current changes using a clear, intent-based message.