dev-pr-description

dev-pr-description is a skill for Claude Code, Codex from abrahamFerga/scrum-skills. It costs 107 tokens per session (1,241 once invoked), scanned A, original, MIT.

A pull-request description writer that compares a Git code change with its linked user story. A pull request is a proposed code change that others review before it is merged into the project.

In plain words
What is it for?
Use it to describe what a branch changes, why the changes exist, and how reviewers can verify them.
Why use it?
It gives reviewers the purpose and verification details behind changed files, so they do not have to reconstruct the reason from the diff alone. It connects implementation work to the story's acceptance criteria.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

Good fit Use it to describe what a branch changes, why the changes exist, and how reviewers can verify them.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/abrahamferga/scrum-skills/dev-pr-description
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.

Any agent
npx skills add abrahamFerga/scrum-skills --skill dev-pr-description
Clone the repo
git clone --depth 1 https://github.com/abrahamFerga/scrum-skills

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 dev-pr-description

README.md
[![agentmods](https://agentmods.dev/badge/skills/abrahamferga/scrum-skills/dev-pr-description.svg)](https://agentmods.dev/skills/abrahamferga/scrum-skills/dev-pr-description)
Your own site
<a href="https://agentmods.dev/skills/abrahamferga/scrum-skills/dev-pr-description"><img src="https://agentmods.dev/badge/skills/abrahamferga/scrum-skills/dev-pr-description.svg" alt="Measured on agentmods" height="20"></a>
Per session 107 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,241 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00107 $0.01241
Opus 5 $0.00053 $0.00620
Sonnet 5 $0.00021 $0.00248
Haiku 4.5 $0.00011 $0.00124

Measured 7d ago against content hash ff44de26b987, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

dev-pr-description 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 7d 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.

skills/dev-pr-description/SKILL.md · 128 lines

How it starts

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

PR Description Generator

Purpose

A good PR description answers three questions every reviewer has before they read a single line of code: What changed? Why does it exist? How do I verify it? This skill reads the diff and the story together to answer all three — so the reviewer spends their time reviewing, not detective-work.


Tool detection

  1. Check for active mcp__azure-devops__* tools → $PM_TOOL = ado
  2. Check for active mcp__jira__* tools → $PM_TOOL = jira
  3. If neither → $PM_TOOL = manual

Step 1 — Read the git context

Run the following to understand what changed:

# Changed files and a summary of what moved
git diff --stat HEAD~1..HEAD 2>/dev/null || git diff --stat origin/main..HEAD

# Commit messages on this branch
git log --oneline origin/main..HEAD 2>/dev/null || git log --oneline -10

# Full diff (for understanding the nature of changes)
git diff origin/main..HEAD 2>/dev/null || git diff HEAD~1..HEAD

If git is not available or the branch has no commits yet, ask the developer to describe the changes.


Step 2 — Identify the linked story

Look for the work item ID in this order:

  1. Branch name — extract a pattern like feature/#1234-, feat/PROJ-456-, dev/1234/, etc.
  2. Commit messages — look for #1234, PROJ-456, Refs:, Closes:, or Fixes: references
  3. Ask"Which story does this PR implement? Provide the ID or paste the content."

Then fetch the story:

  • ADO: use wit_get_work_item — read title, description, and acceptance criteria
  • Jira: use the get-issue tool — read summary, description, and acceptance criteria
  • Manual: accept pasted content

Store as $STORY.


Step 3 — Map changes to acceptance criteria

Before writing the description, build an internal map:

For each acceptance criterion in $STORY:

  • Which files in the diff satisfy it?
  • Is it fully satisfied, partially satisfied, or not covered?

Flag any AC that is not covered by the diff — this is either a missing implementation or the AC belongs to a different PR. Surface it: "AC [N] — '[text]' — does not appear to be covered by these changes. Is that intentional?"

Read the full file on GitHub · 128 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. 7d ago First seen · 128 lines · 107 tokens per session scan A ff44de26b987

Subscribe to this mod's changes

dev-pr-description is a skill published in the GitHub repository abrahamFerga/scrum-skills (2 stars, last pushed 4mo ago), licensed MIT. It adds 107 tokens to every session and 1,241 once invoked, about $0.0005 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-31.