← Back to list

commit
by cgeorgii
My ever-changing dotfiles.
⭐ 0🍴 0📅 Jan 16, 2026
SKILL.md
name: commit description: Create a git commit using conventional commit format. Use when the user asks to create a commit, commit changes, or make a git commit. user-invocable: true
Create Git Commit
Create a git commit using conventional commit format.
- Run
git statusandgit diff --stagedto see staged changes - Run
git log -5 --onelineto check commit history style - Analyze the changes and create a conventional commit message:
- Use prefixes:
feat:,fix:,refactor:,docs:,chore:,style:,test: - Keep the summary line concise (≤50 chars preferred)
- Add details in body if needed
- Use prefixes:
- Stage files with
git addif needed - Commit with a HEREDOC to preserve formatting:
git commit -m "$(cat <<'EOF'
<type>: <concise summary>
<optional body with more details>
EOF
)"
IMPORTANT:
- Never include Claude, AI, or co-authorship mentions
- Follow the repository's existing commit style
- Do NOT run
git pushunless explicitly requested
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