スキル一覧に戻る
cgeorgii

commit

by cgeorgii

My ever-changing dotfiles.

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

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.

  1. Run git status and git diff --staged to see staged changes
  2. Run git log -5 --oneline to check commit history style
  3. 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
  4. Stage files with git add if needed
  5. 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 push unless explicitly requested

スコア

総合スコア

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

レビュー

💬

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