一键导入
pr
Commit changes, bump version, update changelog, and open a PR
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Commit changes, bump version, update changelog, and open a PR
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | pr |
| description | Commit changes, bump version, update changelog, and open a PR |
Commit changes to a feature branch, bump version if needed, update changelog, and open a PR.
git status --porcelainmake test or equivalentCreate or verify feature branch
If on main, create a branch from the work context:
git checkout -b <descriptive-branch-name>
Stage and commit changes
Use the user's git identity (never sign as Claude, no Co-authored-by). Write conventional commit messages:
feat: add remote file syncfix: resolve timeout on large filesBump version if warranted
Update version in pyproject.toml (or equivalent).
Update CHANGELOG.md
Use /changelog skill to generate entry if changes are user-facing.
Push and create PR
git push -u origin <branch>
gh pr create --fill
PR description should summarize changes. Link issues if referenced in commits.