スキル一覧に戻る
r3mcos3

commit

by r3mcos3

Personal collection of Claude Code skills to extend AI capabilities

0🍴 0📅 2026年1月17日
GitHubで見るManusで実行

SKILL.md


name: commit description: Generate English commit message with emoji prefix and push. Use when user wants to commit and push changes, or uses /commit.

Commit and Push Workflow

Steps

  1. Analyze changes: Run git status and git diff to see all modified/untracked files
  2. Group related files: Files belonging to the same feature go in one commit, unrelated files get separate commits
  3. For each commit group:
    • Select emoji prefix based on change type
    • Write concise English commit message
    • Stage files: git add <files>
    • Commit (no Claude attribution)
  4. Push all commits to remote

Emoji Prefixes

EmojiType
New feature
🐛Bug fix
📝Documentation
♻️Refactoring
🎨Styling/formatting
Performance
🔒Security
🧪Tests
🔖Version bump
🚀Deployment
⚙️Configuration
🗑️Remove code/files

Commit Message Format

<emoji> <Short description in English>

Example: ✨ Add return deadline display to product detail page

Rules

  • English only for commit messages
  • No Claude attribution (no "Co-Authored-By" or "Generated with Claude")
  • Group related files (component + styles + utils for same feature = one commit)
  • Separate unrelated changes into different commits
  • Use HEREDOC for commit messages to handle special characters

スコア

総合スコア

50/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

レビュー

💬

レビュー機能は近日公開予定です