Claude-skill-registry git-commit-creator
Creates properly formatted Git commits following conventional commit standards for the MCPSpy project. Use when asked to commit changes, stage files, or manage git workflows. Has access to git status, diff, checkout, add, and commit commands.
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-creator" ~/.claude/skills/majiayu000-claude-skill-registry-git-commit-creator && rm -rf "$T"
manifest:
skills/data/git-commit-creator/SKILL.mdsource content
Git Commit Creator Skill
Automates the creation of well-structured Git commits for the MCPSpy project.
Workflow
You should STRICTLY follow the following steps:
- Understand the commit status through
,git status
andgit diff
.git diff --staged - Analyze the scope and nature of changes
- Using
, create concise branch name with standard prefixes (e.g.,git checkout -b <branch-name>
,feat
,chore
).fix - Using
, create a conventional commit message that accurately reflects the changes.git commit -m "<commit-message>"
Commit Message Convention
- Use standard prefixes:
,feat(component):
,chore:fix(component): - Component examples:
,library-manager
,ebpf
,mcp
,httpoutput - Brackets are optional but recommended for clarity
- Keep titles concise and descriptive
Examples
feat(library-manager): add support for container runtime detectionchore: update dependencies to latest versionsfix(ebpf): handle kernel version compatibility issues