一键导入
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 页面并帮你完成安装。
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.
基于 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-verify