con un clic
pr
Commit changes, bump version, update changelog, and open a PR
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Commit changes, bump version, update changelog, and open a PR
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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.