with one click
pr
Commit changes, bump version, update changelog, and open a PR
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Commit changes, bump version, update changelog, and open a PR
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| 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.