一键导入
commit
Commit the changes that has been worked on in this session
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Commit the changes that has been worked on in this session
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create a new release for SlayZone
Commit changes, mark the current task as done, and close its tab
Supervise a set of slay tasks through planning, execution, and verification
Manage tasks, subtasks, tags, and templates via the slay CLI
Automatically title tasks based on conversation context
Manage task artifacts (files, folders) via the slay CLI
| name | commit |
| description | Commit the changes that has been worked on in this session |
| trigger | auto |
Prepare a git commit for the current task. User context: $ARGUMENTS
Unless the user says otherwise, commit ONLY the changes made in the current session. Do not include pre-existing modifications, untracked files from earlier work, or edits the user made manually outside this session — even if they are staged or in the working tree.
Override signals (commit broader scope only when user explicitly says): "commit everything", "commit all", "include the other changes", "stage X too", or names specific files outside the session set.
git status --short.git diff --name-only and git diff --cached --name-only.git status.git add <file1> <file2> ....git add -p <file> when only part of a file belongs in this commit.git add . or git add -A unless the user explicitly asks to commit everything.git diff --cached.feat, fix, chore, refactor, docs, test.type(scope): summary.git commit -m "<message>".git reset --hard, force checkout) unless explicitly instructed.