commit
Installation
SKILL.md
WordPress-Style Atomic Commit Skill
When to Use
Invoke this skill when:
- User asks to "commit" changes
- User says "make a commit" or "commit my changes"
- After completing a task that should be committed
- User explicitly invokes
/commit
Atomic Commit Principles
Every commit should be:
- Smallest meaningful unit - The minimum change that makes sense on its own
- Single responsibility - One task, one fix, or one feature per commit
- No mixed concerns - Don't combine refactors with features, or style fixes with bug fixes
- Functional - Each commit should leave the codebase in a working state