원클릭으로
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.