Agent Skills
› galacean/effects-runtime
› quick-commit
quick-commit
GitHub自动化Git提交流程。检查状态与变更,自动暂存文件并生成符合规范(如feat/fix前缀)的提交信息,提升版本管理效率。
触发场景
需要提交代码变更时
执行常规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


