← Back to list

git-conventional-commit
by nibzard
⭐ 11🍴 1📅 Jan 22, 2026
SKILL.md
name: git-conventional-commit description: "Create clean git commits using the Conventional Commits format (type(scope): summary). Use when Codex needs to stage changes, craft commit messages, and record completed work in a Git repository."
Git Conventional Commit
Overview
Create one conventional commit per completed task while keeping the working tree clean and history stable.
Workflow
- Review changes with
git statusandgit diff. - Stage only the changes related to the task (use
git add -Aor selective adds). - Compose a Conventional Commit message:
type(scope): summary.- Types: feat, fix, refactor, docs, test, chore, build, ci, perf, style.
- Use imperative mood and keep the summary under 72 characters.
- Commit once per task. Do not amend, rebase, or rewrite history.
- If there are no changes to commit, skip the commit and report why.
Notes
- Avoid touching unrelated changes in a dirty working tree.
- Prefer a specific scope (folder or subsystem) when it clarifies intent.
Score
Total Score
50/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