ワンクリックで
commit
Stage all changes and commit with a descriptive message. Use when the user asks to commit, save changes, or says "/commit".
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Stage all changes and commit with a descriptive message. Use when the user asks to commit, save changes, or says "/commit".
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | commit |
| description | Stage all changes and commit with a descriptive message. Use when the user asks to commit, save changes, or says "/commit". |
| args | [push] |
IMPORTANT: Only use PUSH=true when the user explicitly says "/commit push" or asks to push. Plain "/commit" should NEVER push.
Review changes to determine commit message:
git diff
Run commit script with subject and description:
# Local commit only (no push):
.claude/skills/commit/commit.sh "subject line" "description body"
# Push after commit:
PUSH=true .claude/skills/commit/commit.sh "subject line" "description body"
The script handles: stage, commit, and todo sync. Push happens when PUSH=true.
Note: Do NOT bump versions or create releases here. Versioning and releases are handled via /zed from the main repo.