Claude-skill-registry git-commit
Stage meaningful diffs and create commits with WHY-focused messages. Use whenever making git commits.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/git-commit" ~/.claude/skills/majiayu000-claude-skill-registry-git-commit-1b7982 && rm -rf "$T"
manifest:
skills/data/git-commit/SKILL.mdsource content
INSTRUCTIONS
Use
/git:commit slash command to stage meaningful diffs and create commits with WHY-focused messages.
DISCIPLINE
- Only commit when:
- ALL tests are passing
- ALL compiler/linter warnings have been resolved
- The change represents a single logical unit of work
- Commit messages clearly state whether the commit contains structural or behavioral changes
- Use small, frequent commits rather than large, infrequent ones