← Back to list

commit-message-generator
by mkaczkowski
⭐ 2🍴 0📅 Jan 9, 2026
SKILL.md
name: Commit Message Generator description: Generate clear, concise commit messages from git diffs. Use when writing commit messages, reviewing staged changes, or formatting git history.
Commit Message Generator
Instructions
-
Run
git diff --stagedto view staged changes -
Review the diff and identify:
- What changed
- Why it changed
- Any breaking changes or important side effects
-
Generate a commit message that follows these conventions:
- Summary (max 50 characters): Start with a verb (Add, Fix, Update, Remove, Refactor, etc.)
- Blank line (always)
- Body (wrapped at 72 characters): Explain what and why, not how
- Footer (optional): Reference issues with "Fixes #123" or "Refs #456"
Best Practices
- Use present tense: "Add feature" not "Added feature"
- Be specific and descriptive
- Explain the reasoning behind changes
- Keep summary concise for readability
- Break related changes into separate commits
- Use emoji sparingly (only if team convention)
Example
Add support for Skills in Claude provider
Previously, the plugin collection only supported linking commands. Now that
Claude Code includes Skills, we need to support linking both
commands and skills from the canonical source.
The implementation adds:
- Skills directory structure (plugins/skills/)
- Skill-specific provider configuration
- Dedicated skills linking module
- Support for both project and global skills
Fixes #42
Tips
- Use
git diff --cachedto see what will be committed - Reference related issues or tickets in the footer
- If your commit message needs explanation, the change might be too complex
- Consider atomic commits: one logical change per commit
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon