ワンクリックで
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.