← Back to list

commit-message
by ahupp
⭐ 0🍴 0📅 Jan 20, 2026
SKILL.md
name: commit-message description: Commit staged or unstaged git changes with a clear, informative message (subject + body). Use when asked to commit work, finalize edits, or generate a commit message after changes are made.
Commit Message
Overview
Create a clean git commit by staging the right changes and writing a concise subject with a useful body.
Workflow
- Check status with
git status -sb. If the working tree is clean, report that nothing needs committing. - Review diffs (
git diffandgit diff --staged) to understand what changed and why. - Stage the intended changes. Prefer selective adds, but use
git add -Aif everything should be included. - Write the commit message:
- Subject: imperative mood, <= 72 chars, summarize the main change.
- Body: one blank line, then short paragraphs or bullets covering why the change was made, key details, and user impact.
- Add a final
Tests:line (e.g.,Tests: not runorTests: pytest).
- Commit with
git commit -m "subject" -m "body". - Confirm with
git log -1and report the commit hash and subject.
Score
Total Score
40/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/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