원클릭으로
commit-changes
Stage and commit only uncommitted file changes into clean, categorized commits; existing commits are left untouched.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Stage and commit only uncommitted file changes into clean, categorized commits; existing commits are left untouched.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Upgrade dependency versions and lockfiles across npm workspaces, Python uv projects, and GitHub Actions when asked to bump, upgrade, or update dependencies.
Approve a GitHub PR as a maintainer once verify-pr clears it, posting the GitHub approval or declining, with an optional hand-off to ship-pr for the merge.
Create a new branch off the default base (not the current HEAD, so unrelated commits stay behind) and move all uncommitted changes onto it. Use when you started work on the wrong branch or on main.
create or open a GitHub pull request (PR) from the current branch with a title and body that follow the repo's conventions and the user's writing style
Organize uncommitted changes or messy commits on the current branch into clean, categorized commits grouped by purpose. Can reset and rewrite already-committed (even pushed) history.
Drive a change to a merged PR end to end, building or resuming the PR, looping over CI and review threads to address feedback, and merging once the repo's required-check gate passes.
| name | commit-changes |
| description | Stage and commit only uncommitted file changes into clean, categorized commits; existing commits are left untouched. |
Current branch: !git branch --show-current
Uncommitted changes: !git status --short
Uncommitted diff stat: !git diff --stat HEAD 2>/dev/null
Categorize only the current uncommitted changes into clean commits. Leave existing commits untouched.
git diff HEAD). Untracked/new files don't appear in git diff HEAD; read those files directly so they're categorized, not missed. Group by purpose using conventional commits (feat:, fix:, chore:, refactor:, docs:, style:, test:, perf:, ci:, build:, revert:).git add <files> + git commit. Never git add -A or git add ..git status is clean, show git log --oneline of new commits.Rules:
--no-verify