Smart Git Commit

Analyze git changes, stage as needed, generate a Conventional Commit message, and create a commit.

Sby Skills Guide Bot
DevelopmentIntermediate
007/22/2026
Claude Code
#git#conventional-commit#commit-message#automation#version-control

Recommended for


name: "commit" description: "Analyze git changes, stage as needed, generate a Conventional Commit message, and create a commit." argument-hint: "[optional commit intent]" user-invocable: true

Skill: Smart Git Commit

Use this skill when the user runs /commit or asks to commit changes.

Instructions

  1. Analyze Context:

    • Run git status to identify modified, added, or deleted files.
    • Run git diff to inspect changes in unstaged files.
    • Run git diff --cached to inspect changes in staged files.
  2. Stage Changes:

    • If there are unstaged changes, run git add -A to stage all changes unless the user explicitly requested a partial commit.
  3. Generate Commit Message:

    • Analyze diffs to understand the intent of changes.
    • Draft a message following Conventional Commits:
      <type>(<scope>): <description>
      
      [optional body]
      
    • Type 使用英文: feat, fix, docs, style, refactor, perf, test, build, ci, chore
    • Scope 为可选,应反映受影响的功能区域。
    • 标题示例格式: feat(world): WorldStore/RegionCache 架构与 runtime chunk streaming
    • 正文尽量使用中文编写,描述具体变更细节和原因。
  4. Execute Commit:

    • Run git commit -m "generated_message".
    • If a body is needed, use multiple -m flags.
  5. Report:

    • Inform the user of the commit message used and commit result.
Related skills