← Back to list

commit-message-crafter
by claushaas
⭐ 2🍴 0📅 Jan 18, 2026
SKILL.md
name: commit-message-crafter description: Generate best-practice git commit messages (Conventional Commits) by inspecting changes, choosing type/scope, and producing concise, high-signal summaries in English.
Commit Message Crafter
Use this skill when the user wants help writing commit messages or asks for best commit messages. When the change set spans distinct concerns (features, fixes, docs, tests), prefer multiple focused commits instead of one large commit.
Quick workflow
- Inspect context and split when needed
- Prefer
git status -sbandgit diff(or PR summary if provided). - Identify: what changed, why, and impact.
- Detect breaking change risk and migrations.
- Group changes by concern (e.g., fix vs test vs docs). If there is more than one clear concern, plan multiple commits.
- Use Conventional Commits only
- Always use Conventional Commits; do not ask about other styles.
- Craft the message(s)
- Subject is imperative, short, and specific.
- Avoid: “WIP”, “misc”, “stuff”, “update”, or long diffs in subject.
- Keep ASCII unless the repo clearly uses non-ASCII.
- Always write commit messages in English.
- If multiple commits are planned, propose a commit plan (ordering + scope) and produce a message for each.
- Optional body and footer
- Use a body when the change is non-trivial or has tradeoffs.
- Wrap body at ~72 chars, use short bullets if helpful.
- Add
BREAKING CHANGE:footer when applicable. - Add issue refs if provided by the user.
Conventional Commits template
<type>(<scope>): <subject>
<body optional>
<footer optional>
Types (choose the most accurate):
featnew user-facing behaviorfixbug fixrefactorcode change without behavior changeperfperformance improvementdocsdocumentation onlytesttests onlychoremaintenance, toolingbuildbuild system or dependenciesciCI-relatedstyleformatting-only changes
Reference benchmarks
Read references/benchmarks.md if you need formal standards or reminders.
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