Skill

commit-message-generator

This skill should be used when the user asks to "generate commit message", "write commit message", "create git commit", or mentions analyzing staged changes for commits.

From example-skills
Install
1
Run in your terminal
$
npx claudepluginhub rafaelcalleja/claude-market-place --plugin example-skills
Tool Access

This skill uses the workspace's default tool permissions.

Skill Content

Commit Message Generator

Generate clear, descriptive commit messages from git diffs.

Workflow

  1. Run git diff --staged to see changes
  2. Analyze the modifications
  3. Generate commit message with:
    • Summary under 50 characters
    • Detailed description
    • Affected components

Message Format

type(scope): brief description

Detailed explanation of changes.
- Change 1
- Change 2

Types

TypeDescription
featNew feature
fixBug fix
docsDocumentation
styleFormatting
refactorCode restructuring
testAdding tests
choreMaintenance

Best Practices

  • Use present tense ("Add feature" not "Added feature")
  • Explain what and why, not how
  • Reference issues when applicable
Stats
Parent Repo Stars2
Parent Repo Forks1
Last CommitDec 4, 2025