Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
fandhe-ai avatar

Create Commit

  • 3 installs
  • 2 repo stars
  • Updated August 3, 2026
  • fandhe-ai/agent-reference-skills

Helps with git & pull requests tasks.

About

create-commit is a Claude Code skill for git & pull requests. It helps solo builders move faster with AI-assisted coding.

  • create-commit
  • Git & Pull Requests
  • AI-coding skill

Create Commit by the numbers

  • 3 all-time installs (skills.sh)
  • Ranked #492 of 733 Git & Pull Requests skills by installs in the Skillselion catalog
  • Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/fandhe-ai/agent-reference-skills --skill create-commit

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs3
repo stars2
Last updatedAugust 3, 2026
Repositoryfandhe-ai/agent-reference-skills

What it does

Helps with git & pull requests tasks.

Files

SKILL.mdMarkdownGitHub ↗

create-commit

変更内容を分析して Conventional Commits 形式でコミットを作成します。

フロー

Step 1: 変更内容を確認する

git status
git diff --staged

staged がない場合は git diff も確認してユーザーに staging を案内する。

Step 2: Conventional Commits type を決定する

type用途
feat新機能
fixバグ修正
docsドキュメントのみの変更
refactor機能変更なしのコードリファクタリング
testテストの追加・修正
choreビルドプロセス・補助ツール等の変更
styleコードスタイルのみの変更(空白、フォーマット等)
buildビルドシステムや外部依存関係の変更
ciCI 設定の変更
perfパフォーマンス改善

Step 3: scope を推定する

変更ファイルのパスから scope を推定する。 複数にまたがる場合は省略可。

Step 4: コミットメッセージを生成してユーザーに確認する

フォーマット: type(scope): subject

例:

feat(auth): ソーシャルログイン機能を追加
fix(api): レスポンスのエラーハンドリングを修正
refactor(ui): コンポーネント構造を整理

ユーザーに提案して確認を取る。

Step 5: コミットを実行する

git commit -m "$(cat <<'EOF'
type(scope): subject

Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"

重要: --no-verify は絶対に使用しない(pre-commit フックを迂回しない)。

注意事項

  • Breaking change がある場合は ! を付ける: feat!: ... または body に BREAKING CHANGE: を記述
  • 件名は命令形・現在形で記述(日本語可)
  • 件名は 72 文字以内
  • .env や認証情報ファイルが含まれる場合は警告してコミットを中止する

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.