update-pr

update-pr is a skill for Claude Code, Codex from NVIDIA-NeMo/DataDesigner. It costs 17 tokens per session (1,228 once invoked), scanned A, original, Apache-2.0.

A workflow for updating an existing GitHub pull request, which is a proposed code change waiting for review. It revises the pull request description to match the branch's current changes and can optionally update its title.

In plain words
What is it for?
Use it to refresh an open pull request's title or description, summarize new changes, and add requested context.
Why use it?
Pull request descriptions often become inaccurate after review feedback and new commits. This workflow checks the open pull request and updates its explanation using the current branch state.

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

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for update-pr

README.md
[![agentmods](https://agentmods.dev/badge/skills/nvidia-nemo/datadesigner/update-pr.svg)](https://agentmods.dev/skills/nvidia-nemo/datadesigner/update-pr)
Your own site
<a href="https://agentmods.dev/skills/nvidia-nemo/datadesigner/update-pr"><img src="https://agentmods.dev/badge/skills/nvidia-nemo/datadesigner/update-pr.svg" alt="Measured on agentmods" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,228 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.00017 $0.01228
Opus 5 $0.00009 $0.00614
Sonnet 5 $0.00003 $0.00246
Haiku 4.5 $0.00002 $0.00123

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

Security

Grade A, and why

update-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 4d 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/update-pr/SKILL.md · 152 lines

How it starts

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

Update Pull Request

Update the description of an existing GitHub pull request for the current branch.

Arguments

$ARGUMENTS can be used for:

  • --title flag: Include to also update the PR title
  • Special instructions (same as create-pr):
    • Guiding the summary: "emphasize the performance improvements"
    • Adding context: "this PR now also includes the auth fixes"
    • Any other guidance for the updated description

Step 1: Find the Existing PR

  1. Get current branch and PR info:
    gh pr view --json number,title,body,url,headRefName,state
    

Important checks:

  • If no PR exists for the current branch, fail and inform the user to use /create-pr instead
  • If the PR is merged or closed, fail and inform the user the PR is no longer open

Step 2: Gather Current State

Run these commands in parallel to understand the full state:

  1. Uncommitted changes: git status --porcelain
  2. All commits on branch: git log origin/main..HEAD --oneline
  3. File changes summary: git diff --stat origin/main..HEAD
  4. Full diff: git diff origin/main..HEAD
  5. 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

Step 3: Analyze and Categorize Changes

By Change Type (from commits and diff)

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

Identify Attention Areas

Flag for special reviewer attention:

  • Files with significant changes (>100 lines)
  • Changes to base classes, interfaces, or public API
  • New dependencies (pyproject.toml, requirements.txt)
  • Configuration schema changes
  • Security-related changes

Step 4: Update the PR

  1. Push any new commits (if needed):
    git push
    

Read the full file on GitHub · 152 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. 4d ago First seen · 152 lines · 17 tokens per session scan A 7bd8fc3714b9

Subscribe to this mod's changes

update-pr is a skill published in the GitHub repository NVIDIA-NeMo/DataDesigner (2,198 stars, last pushed today), licensed Apache-2.0. It adds 17 tokens to every session and 1,228 once invoked, about $0.0001 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

community-research-insight

Extract structured insight briefs from community research transcripts or notes. Produces pain points, stakeholder needs, opportunity maps, risks, and follow-up questions. Requires human review before publication.

clawdotnet/openclaw.net · 41 tokens

history-explorer

Inspect recent session conversation turns and meta-run history. Returns structured JSON summaries of turn counts, role distribution, tool usage, meta-skill executions, and co-occurrence patterns. Use this before running meta-skill-creator or when the user asks about recent history, past tool usage, or session activity.

clawdotnet/openclaw.net · 65 tokens

llama-factory

Expert guidance for fine-tuning LLMs with LLaMA-Factory - WebUI no-code, 100+ models, 2/3/4/5/6/8-bit QLoRA, multimodal support.

Orchestra-Research/AI-Research-SKILLs · 51 tokens

screenpipe-api

Query the user's local and synced-device Screenpipe data via the REST API at localhost:3030. Use for screen activity, meetings, apps, productivity, other-device or cross-device history, media export, retranscription, or connected services.

screenpipe/screenpipe · 52 tokens

release

Release the screenpipe monorepo. Bumps versions, triggers GitHub Actions for app, CLI, MCP, and JS packages.

screenpipe/screenpipe · 29 tokens

screenpipe-cli

Manage screenpipe pipes (scheduled AI automations) and connections (Telegram, Slack, Discord, etc.) via the CLI. Use when the user asks to create, list, enable, disable, run, or debug pipes, or manage service connections from the command line.

screenpipe/screenpipe · 58 tokens