Agent Skills
› galacean/effects-runtime
› quick-commit
quick-commit
GitHub用于快速暂存所有代码变更并提交,通过执行git status和diff确认状态,自动添加文件并生成符合约定式提交规范(如feat/fix)的描述性提交信息。
Trigger Scenarios
需要提交代码更改时
用户要求创建描述性git commit时
Install
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
Version History
- 2.10.0 Current 2026-09-02 23:02


