create-pr

A development skill for creating a GitHub pull request, a request to merge code from one branch into another, with a description that follows the repository’s template.

In plain words
What is it for?
Use it to open a pull request, choose a base branch, and organize its summary by changes such as added, changed, removed, or fixed work.
Why use it?
It helps document branch changes in the format the repository expects and checks the branch, commits, differences, and repository details first.

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/nvidia-nemo/datadesigner/create-pr
Any agent
npx skills add NVIDIA-NeMo/DataDesigner --skill create-pr
Clone the repo
git clone --depth 1 https://github.com/NVIDIA-NeMo/DataDesigner

Made for: Claude Code, Codex.

Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,640 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.00035 $0.01640
Opus 5 $0.00017 $0.00820
Sonnet 5 $0.00007 $0.00328
Haiku 4.5 $0.00003 $0.00164

Measured 3d ago against content hash 53a84f4767fd, 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 3d 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 · 176 lines

How it starts

The opening of the file, as written. The whole thing — 176 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Create Pull Request

Create a well-formatted GitHub pull request for the current branch. The PR description must conform to the repository's PR template (.github/PULL_REQUEST_TEMPLATE.md).

Arguments

$ARGUMENTS can be used for special instructions, such as:

  • Specifying a base branch: "use base branch: develop"
  • Guiding the summary: "emphasize the performance improvements in the summary"
  • Adding context: "this is part of the auth refactor epic"
  • Any other guidance for PR creation

Default base branch: main (unless specified in arguments)

Step 1: Gather Information

Run these commands in parallel to understand the changes:

  1. Current branch: git branch --show-current
  2. Uncommitted changes: git status --porcelain
  3. Commits on branch: git log origin/main..HEAD --oneline
  4. File changes summary: git diff --stat origin/main..HEAD
  5. Full diff: git diff origin/main..HEAD
  6. Recent commit style: git log -5 --oneline (to match PR title convention)
  7. Repo info: gh repo view --json nameWithOwner -q '.nameWithOwner' (for constructing file URLs)

Important checks:

  • If uncommitted changes exist, warn the user and ask if they want to commit first
  • If no commits ahead of main, inform the user there's nothing to PR
  • If branch isn't pushed, you'll push it in Step 4

Step 2: Analyze and Categorize Changes

Use change types below to decide how to write the Changes section (flat vs grouped). You still describe testing under Testing, not under these buckets.

By change type (internal checklist)

  • Added: New files, features, capabilities
  • 🔧 Changed: Modified existing functionality
  • 🗑️ Removed: Deleted files or features
  • 🐛 Fixed: Bug fixes
  • 📚 Docs: Documentation updates
  • 🧪 Tests: Test additions/modifications

When to use optional grouping in Changes

  • Flat bullet list (default): Small PRs, single theme, or when categories would be sparse or redundant.
  • Grouped subheadings (### ✨ Added, ### 🔧 Changed, ### 🗑️ Removed, ### 🐛 Fixed): Large PRs, release-note-style summaries, or clearly distinct fix + feature mixes. Omit any empty section — do not leave placeholder headings.

Read the full file on GitHub · 176 lines

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. 3d ago First seen · 176 lines · 35 tokens per session scan A 53a84f4767fd

Subscribe to this mod's changes

create-pr is a skill published in the GitHub repository NVIDIA-NeMo/DataDesigner (2,194 stars, last pushed 4d ago), licensed Apache-2.0. It adds 35 tokens to every session and 1,640 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.