Git Commit Helper

SkillCommunication

Conventional Commits standardization tool: analyzes git diff to automatically generate compliant commit messages, with automatic scope detection and smart inference of commit type (e.g. feat, fix, refactor). Triggered when users mention commit message, conventional commits, git commit, normalized co

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Git Commit Helper skill

What this skill tells your AI

The instructions your AI receives, as published by rongxinzy/rongxinai in SKILLs/smart-commit-gen/SKILL.md and read by ahel’s review.

分析当前 git diff,自动生成符合 Conventional Commits 规范的 commit message,并智能检测 scope。

Quick Start

# 分析未暂存的改动,生成 commit message
python3 scripts/analyze_diff.py

# 分析已暂存(staged)的改动
python3 scripts/analyze_diff.py --staged

# 指定仓库路径
python3 scripts/analyze_diff.py --repo /path/to/repo

# JSON 格式输出(便于程序集成)
python3 scripts/analyze_diff.py --staged --format json

# 手动覆盖 type 或 scope
python3 scripts/analyze_diff.py --staged --type-override feat --scope-override auth

使用流程(SOP)

1. 获取 diff 分析结果

在用户的 git 仓库中运行脚本,获取自动分析结果:

python3 scripts/analyze_diff.py --staged --format json

2. 审查并调整

脚本会输出:

  • type:自动推断的提交类型(feat / fix / docs / style / refactor / test / chore / perf / ci / build)
  • scope:从文件路径中检测的作用域(如 auth、api、ui 等)
  • description:基于变更统计生成的简要描述
  • commit_message:组装好的完整 commit message

审查输出后,根据实际语义调整:

  • 如果 type 不准确(如脚本判断为 chore 但实际是 feat),用 --type-override 覆盖
  • 如果 scope 不合适,用 --scope-override 覆盖
  • description 建议根据实际改动内容手写,脚本输出仅作参考

注意:type 检测基于文件路径和变更统计,对 test/docs/ci/build 等类型的检测较准确,但对修改已有源代码文件的情况(feat vs fix vs refactor)需要你阅读 diff 内容后判断。

3. Conventional Commits 规范参考

<type>(<scope>): <description>

[optional body]

[optional footer(s)]
Type含义
feat新功能
fixBug 修复
docs文档变更
style代码格式(不影响逻辑)
refactor重构(不涉及新功能或修复)
test测试相关
chore构建/工具/依赖等杂项
perf性能优化
ciCI/CD 配置变更
build构建系统或外部依赖变更

4. Breaking Changes

如果改动包含不兼容变更,在 type 后加 !

feat(api)!: change authentication endpoint response format

参数说明

参数说明默认值
--repoGit 仓库路径.
--staged仅分析已暂存的改动
--format输出格式:textjsontext
--type-override手动指定 commit type,跳过自动检测
--scope-override手动指定 scope,跳过自动检测

前置条件

  • Python 3.6+
  • git 已安装且在 PATH 中
  • 当前目录或 --repo 指向一个有效的 git 仓库

Signals

GitHub stars
151
Forks
3
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
smart-commit-gen
Source
github.com/rongxinzy/rongxinai