Agent Skills
› galacean/effects-runtime
› quick-commit
quick-commit
GitHub自动化执行 Git 提交流程,包括检查状态、暂存更改并生成符合约定式规范的描述性提交信息。
触发场景
用户请求提交代码变更
需要规范化提交消息时
安装
npx skills add galacean/effects-runtime --skill quick-commit -g -y
SKILL.md
Frontmatter
{
"name": "quick-commit",
"description": "Stage all changes and commit with a descriptive message"
}
- Run
git statusto see the current state - Run
git diffto understand the changes - If no files are staged, run
git add -A .to stage all changes; otherwise skip - Create a commit with a clear message that:
- Starts with a type prefix (feat:, fix:, refactor:, docs:, test:, chore:)
- Briefly describes what changed
- Uses imperative mood ("Add feature" not "Added feature")
Example: feat: add product search functionality
版本历史
- 2.10.0 当前 2026-09-02 23:02


