원클릭으로
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 beanup sync. Push happens when PUSH=true.
Note: Version is set manually in extension.toml and Cargo.toml. Update these files before committing when releasing a new version.