with one click
pr
Create or update a pull request with a structured description.
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
Create or update a pull request with a structured description.
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
Amend the last commit with current changes and/or an updated message.
Stage changes and create a commit with a conventional commit message.
Full autopilot — plan, implement, and polish a task end-to-end.
Fetch and display diffs for various scopes (PR, commit, branch, staged, working tree). Used by other skills that need to analyze changes.
Execute a plan file — parse phases, spawn parallel subagents, handle failures.
Start or end a forked session for exploring rabbit holes without losing the main conversation's context.
| name | pr |
| description | Create or update a pull request with a structured description. |
| allowed-tools | Bash, Read, Glob, Grep, AskUserQuestion, Agent |
main. Override with --base <branch> in $ARGUMENTS.git log <base>..HEAD --oneline. If nothing to merge, ask the user what they intended.git push -u origin $(git branch --show-current). If it fails because the remote has diverged (e.g., after an amend or rebase), tell the user and ask whether to force push (--force-with-lease). Never force push without confirmation.gh pr view --json number,title,body 2>/dev/null. If a PR already exists, go to step 6.git log <base>..HEAD). Run /diff <branch> for the full diff./commit (Problem + Solution with ## headings). No "Test plan" or "Summary" sections.mktemp /tmp/pr-body.XXXXXX.md, write the description to it, and run gh pr create --base <base> --title "<title>" -F <temp-file>./diff <branch> and compare the full diff against the current PR description. If the description no longer accurately reflects the branch's changes, create a unique temp file with mktemp /tmp/pr-body.XXXXXX.md, write the new description to it, and run gh pr edit <number> --title "<title>" -F <temp-file>.