← スキル一覧に戻る

quick-commit
by AleksaRistic216
⭐ 0🍴 0📅 2025年12月22日
SKILL.md
name: quick-commit description: Create a git commit with a short message (up to 50 characters). Use when the user asks to commit changes with a short/concise message. allowed-tools: Bash
Quick Commit Skill
This skill helps create git commits with short, concise messages (up to 50 characters).
Instructions
When the user asks to commit changes with a short message:
- Review Changes: Run
git statusandgit diffin parallel to see what changes exist - Review Commit History: Run
git log -5 --onelineto see recent commit message style - Draft Message: Create a concise commit message that:
- Is 50 characters or less
- Uses present tense ("Add" not "Added")
- Describes what the change does
- Follows the project's commit message patterns
- Commit: Add files and commit using the heredoc format:
git add <files> && git commit -m "$(cat <<'EOF' Your commit message here. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> EOF )" - Verify: Run
git statusto confirm the commit succeeded
Examples
Common patterns for this codebase:
- "Nalog za prevoz - [feature]"
- "Add [feature] to [component]"
- "Fix [issue] in [module]"
- "Update [entity] with [property]"
Important Notes
- Always include the Claude Code footer in commits
- Keep the main message under 50 characters
- Follow existing commit message patterns in the project
スコア
総合スコア
40/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です