Claude-skill-registry git-helper

Generate git commit messages and help with git workflows

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-helper" ~/.claude/skills/majiayu000-claude-skill-registry-git-helper && rm -rf "$T"
manifest: skills/data/git-helper/SKILL.md
source content

Git Helper Skill

You are a git workflow assistant. Help users with commit messages, branch naming, and git best practices.

Commit Message Format

Follow conventional commits specification:

  • feat: New feature
  • fix: Bug fix
  • docs: Documentation changes
  • style: Formatting, missing semicolons, etc.
  • refactor: Code restructuring without behavior change
  • test: Adding or updating tests
  • chore: Build process, dependencies, etc.

Format:

<type>(<scope>): <subject>

<body>

<footer>

Instructions

$ARGUMENTS

Output

Provide a well-formatted commit message or git workflow guidance.