بنقرة واحدة
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.