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".
适合你,如果你经常需要从命令行快速创建PR
/ 下载安装
用别的 agent?下载 .zip 解压,把文件夹放进它的技能目录
Claude Code
~/.claude/skills/(项目级 .claude/skills/)Codex CLI
~/.codex/skills/Cursor自动读取上面两处目录
其他工具见其文档的「skills」目录;两个下载是同一份文件,只是名字不同
/ 通过 npx 安装 校验哈希
npx oh-my-skill add fcakyon/claude-codex-settings/create-pr/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- fcakyon/claude-codex-settings/create-pr/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify fcakyon/claude-codex-settings/create-pr安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
773GitHub stars
~731上下文体积 · 单文件
镜像托管
怎么用
技能原文 SKILL.md
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
github-dev:pr-creatorfor the full workflow. - Pass along any extra invocation text plus session findings and motivation as additional context.
- Otherwise follow the manual steps below.
- Verify staged changes exist with
git diff --cached --name-only
- Branch setup
- If on main/master, create a short branch first:
feature/short-topic,fix/short-topic, ordocs/short-topic - Keep the branch suffix to 2-4 short words
- Avoid long, overly specific, or sentence-like branch names
- Use
github-dev:commit-creatorsubagent to handle staged changes if needed, and pass session findings and motivation into the commit context
- Documentation check
- Update README.md or docs based on changes compared to target branch
- For config/API changes, use
mcp__tavily__tavily_searchto verify info and include sources
- Analyze all commits
- Use
git diff <base-branch>...HEADto review complete changeset - PR message must describe all commits, not just latest
- Focus on what changed from reviewer perspective
- Create PR
- Use
ghfor GitHub operations andgitonly for local branch management - Use
github-dev:pr-creatororgh pr createwith parameters: -t(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.-b(body): Brief summary + bullet points with inline markdown links-a @me(self-assign)-r <reviewer>: Only add if the user explicitly asks OR recent PRs by this author have reviewers. Check with:gh pr list --repo <owner>/<repo> --author @me --limit 5 --json reviewRequestsIf recent PRs have no reviewers, skip-rentirely.
- 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(...), ...)`
按 Apache-2.0 许可原样转载,未经改动 · 在 GitHub 查看 →
评论
登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。
…