ワンクリックで
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 職業分類に基づく
| 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-verifyUpgrade 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.