create-pr

A guide for creating a GitHub Pull Request, which is a request to merge code changes into another branch. It covers choosing the target branch, following the repository's template, and using the expected title format.

In plain words
What is it for?
It helps inspect branches and recent changes, read the pull-request template, compare recent merged requests, push an unpushed branch, and create the request.
Why use it?
It removes the manual checks needed before opening a consistent, reviewable request to merge code.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/modelengine-group/fit-framework/create-pr
Any agent
npx skills add ModelEngine-Group/fit-framework --skill create-pr
Clone the repo
git clone --depth 1 https://github.com/ModelEngine-Group/fit-framework

Made for: Claude Code, Codex.

Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 317 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00042 $0.00317
Opus 5 $0.00021 $0.00159
Sonnet 5 $0.00008 $0.00063
Haiku 4.5 $0.00004 $0.00032

Measured 2d ago against content hash bd43945db798, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

create-pr scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/create-pr/SKILL.md · 37 lines

What it actually says

创建 Pull Request

执行步骤

  1. 确定目标分支: 如果用户指定了目标分支则使用该分支,否则自动推断:

    git branch --show-current
    git log --oneline --decorate --first-parent -20
    

    推断规则:

    • 当前在核心分支上(main 或版本号分支如 3.6.x) -> 目标分支即为当前分支
    • 当前在特性分支上 -> 从 log 中找到最近的父核心分支
  2. 读取 PR 模板:

    cat .github/PULL_REQUEST_TEMPLATE.md
    
  3. 查看最近的 merged PR 作为格式参考:

    gh pr list --limit 3 --state merged --json number,title,body
    
  4. 分析当前分支的完整变更。

  5. 检查远程分支状态,如果未推送则先推送。

  6. 创建 PR,结尾添加: 🤖 Generated with Codex

注意: 严格遵循 PR 模板格式,确保 PR 标题遵循 Conventional Commits 格式。

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 37 lines · 42 tokens per session scan A bd43945db798

Subscribe to this mod's changes

create-pr is a skill published in the GitHub repository ModelEngine-Group/fit-framework (2,117 stars, last pushed 5mo ago), licensed MIT. It adds 42 tokens to every session and 317 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

reviewable-design-doc

要求・設計・アーキテクチャ・未決事項を整理し、レビュー可能な設計資料HTMLを作りたい時に使う。Use this skill to structure requirements, design, architecture, alternatives, decisions, and unresolved issues into a review-ready HTML design document. レビュー完了後はHTMLコメントを読み込み、設計へ反映し、確認が必要な場合はHTMLコメントスレッドへagent返信を書き戻す。Triggers: レビュー可能な設計資料, 設計資料をHTMLで, design doc…

u-ichi/reviewable-html-workbench · 236 tokens

review-persistence-security-resources

Normative reviewer for persistence, settings, secrets, logging hygiene, resources, caches, cross-platform behavior and long-lived state in the explyt/spring-plugin IntelliJ plugin. Use when reviewing changes that touch PersistentStateComponent, settings UI, credentials, caches, service fields, logging, file paths…

explyt/spring-plugin · 83 tokens

review-psi-vfs-indexing

Normative reviewer for PSI lifecycle, VFS, indexing, UAST, references, inspections, intentions and PSI performance traps in the explyt spring-plugin. Use during orchestrated code review when the diff touches PsiElement handling, VirtualFile processing, caches, indexes, completion contributors, inspections, line…

explyt/spring-plugin · 73 tokens

coding-guard

Compact coding guidelines for the explyt/spring-plugin repository - covers process rules (think first, simplicity, surgical changes), module layout, IntelliJ Platform threading and PSI rules, inspection and test conventions, message bundles, statistics tracking, and PR hygiene. You must call this skill before any code…

explyt/spring-plugin · 67 tokens

review-statistic-coverage

Usage-statistics coverage check for explyt/spring-plugin code reviews — verify that new user-visible features (quick fixes, intentions, gutter actions, completions, actions, tool-window controls, wizard steps) register usage via StatisticService and StatisticActionId. Use when reviewing a diff or PR that adds or…

explyt/spring-plugin · 85 tokens

github-bugs-triage

Triages the open bug queue of the explyt/spring-plugin GitHub repository: fetches the oldest open plugin-bug and compatibility issues, refines titles, suggests labels and priorities with evidence, detects duplicates, and writes a structured triage table. Use when asked to triage spring-plugin bugs, review the bug…

explyt/spring-plugin · 79 tokens