원클릭으로
pr-create
Create a pull request with title and body based on commits
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a pull request with title and body based on commits
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a Claude Code rule, skill, or agent — global (~/.claude) or project-local (.claude)
Code review using OpenAI Codex CLI with project context (rules, diff, conventions)
Multi-perspective code review from base branch with 3 independent reviewer agents
Analyze working tree changes, map to existing commits, and create fixup commits for autosquash
Analyze working tree changes, plan logically minimal NEW atomic commits per hunk (no fixup), and execute them
Review every commit message since base branch and add reword fixups where the message needs improvement (non-interactive)
| name | pr-create |
| disable-model-invocation | true |
| allowed-tools | Bash(git branch:*), Bash(git log:*), Bash(git diff:*), Bash(git ls-remote:*), Bash(gh pr:*) |
| description | Create a pull request with title and body based on commits |
The user invoking /pr-create IS the explicit intent to create the PR — do NOT ask for approval.
Self-contained: this skill reads git and runs gh pr create directly from
the top-level session. Do NOT spawn a subagent.
ABSOLUTELY NEVER run git push or any git write command — not directly, not
through Bash, not under any circumstances. The branch is expected to be
already pushed. NEVER use gh pr create --push.
origin/<base>..HEAD diff.Analyze (read-only):
git branch --show-current, git log --oneline origin/<base>..HEAD, git diff --stat origin/<base>..HEAD.Title: <concise summary>
## Summary
- <bullet points>
## Why
<explanation of WHY>
## Test Plan
- [ ] <items>
Verify remote branch - git ls-remote --exit-code origin refs/heads/<branch>.
Create - Run gh pr create directly with the drafted title and body (pass the body via a HEREDOC to preserve formatting). Do NOT ask for approval — the /pr-create invocation is the explicit permission. NEVER pass --push. Present the PR URL to the user.