← Back to list

commit
by jroslaniec
⭐ 1🍴 0📅 Jan 19, 2026
SKILL.md
name: commit description: Create git commits with appropriate commit messages. Use when the user asks to commit, create a commit, write a commit message, or mentions "commit" in the context of saving changes to git.
Git Commit
Step 1: Gather Context
Run the skill's context-gathering script:
<skill-location-dir>/scripts/gather-commit-context.sh
The script outputs the current working directory first. Verify you are in the correct repository before proceeding.
Step 2: Decide Commit Style
One-line when: <100 lines, simple change, user asks for "short/quick commit"
Detailed when: >100 lines, multiple components, user asks for "detailed commit"
Match project style: Use conventional commits (feat:, fix:) only if recent commits use them.
Step 3: Create Commit
git commit -m "message"
git commit -m "title" -m "- bullet 1
- bullet 2"
Rules
- NEVER include attribution markers in commit messages. This includes but is not limited to:
- "Co-Authored-By" or "Co-authored-by" headers
- "Generated by", "Created by", "Written by" followed by any AI/LLM name
- Footers like "🤖 Generated with Claude Code" or similar
- Any mention of AI tools: Claude, GPT, Copilot, Codex, Gemini, Cursor, or other LLMs/assistants
- Any text or links indicating AI involvement in creating the commit
- NEVER do
git add . - If pre-commit modifies files: add them and retry
- If pre-commit fails: ask user
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