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.md
source content

INSTRUCTIONS

Use

/git:commit
slash command to stage meaningful diffs and create commits with WHY-focused messages.

DISCIPLINE

  • Only commit when:
    1. ALL tests are passing
    2. ALL compiler/linter warnings have been resolved
    3. The change represents a single logical unit of work
    4. Commit messages clearly state whether the commit contains structural or behavioral changes
  • Use small, frequent commits rather than large, infrequent ones