A slash command for Claude Code to perform (a) commit(s) following the conventional style.
--- allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*) description: 创建一个 git 提交 --- ## 上下文 - 当前 git 状态: !`git status` - 当前 git 差异(已暂存和未暂存的更改): !`git diff HEAD` - 当前分支: !`git branch --show-current` - 最近提交: !`git log --oneline -10` ## 你的任务 审查现有更改,然后按照约定提交格式创建一个 git 提交。如果你认为有多个不同的更改,你可以创建 ...