Claude-codex-settings create-pr
This skill should be used when user asks to "create a PR", "make a pull request", "open PR for this branch", "submit changes as PR", "push and create PR", or explicitly invokes "create-pr".
install
source · Clone the upstream repo
git clone https://github.com/fcakyon/claude-codex-settings
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/fcakyon/claude-codex-settings "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/github-dev/skills/create-pr" ~/.claude/skills/fcakyon-claude-codex-settings-create-pr && rm -rf "$T"
manifest:
plugins/github-dev/skills/create-pr/SKILL.mdsource content
Create PR
Complete workflow for creating pull requests following project standards.
When explicitly invoked with extra text, treat that text as additional context for branch naming, commit context, and PR title and body generation. Compress it into a short plain-language branch name rather than copying the full text.
Process
-
Preferred execution
- If subagents are available, use
for the full workflow.github-dev:pr-creator - Pass along any extra invocation text plus session findings and motivation as additional context.
- Otherwise follow the manual steps below.
- If subagents are available, use
-
Verify staged changes exist with
git diff --cached --name-only -
Branch setup
- If on main/master, create a short branch first:
,feature/short-topic
, orfix/short-topicdocs/short-topic - Keep the branch suffix to 2-4 short words
- Avoid long, overly specific, or sentence-like branch names
- Use
subagent to handle staged changes if needed, and pass session findings and motivation into the commit contextgithub-dev:commit-creator
- If on main/master, create a short branch first:
-
Documentation check
- Update README.md or docs based on changes compared to target branch
- For config/API changes, use
to verify info and include sourcesmcp__tavily__tavily_search
-
Analyze all commits
- Use
to review complete changesetgit diff <base-branch>...HEAD - PR message must describe all commits, not just latest
- Focus on what changed from reviewer perspective
- Use
-
Create PR
- Use
for GitHub operations andgh
only for local branch managementgit - Use
orgithub-dev:pr-creator
with parameters:gh pr create
(title): Start with capital letter, use verb, NO "fix:" or "feat:" prefix Use plain language. Avoid jargon and internal shorthand unless a command or tool name is needed.-t
(body): Brief summary + bullet points with inline markdown links-b
(self-assign)-a @me
: Only add if the user explicitly asks OR recent PRs by this author have reviewers. Check with:-r <reviewer>
If recent PRs have no reviewers, skipgh pr list --repo <owner>/<repo> --author @me --limit 5 --json reviewRequests
entirely.-r
- Use
-
PR Body Guidelines
- Single section, no headers if possible. Very concise
- Use plain language. Avoid jargon and buzzwords unless an exact command or tool name is needed.
- Few bullet points + 1 CLI/usage snippet or simple before/after snippet
- No test plans, no changed file lists, no line-number links
Examples
CLI snippet:
Add compare command for side-by-side model comparison - Run multiple models on same images with `--models` and `--phrases` flags - Horizontal panel concatenation with model name headers `ultrannotate compare --source ./images --models sam3.pt,yoloe-26x-seg.pt --phrases "person,car"`
Before/after:
Inline single-use variables in compare_models - xyxy2xywhn handles empty arrays, guard unnecessary - Use function reference for draw dispatch Before: `boxes = result.get(...); ops.xyxy2xywhn(boxes, ...)` After: `ops.xyxy2xywhn(result.get(...), ...)`