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.
npx skills add abrahamFerga/scrum-skills --skill dev-pr-descriptiongit clone --depth 1 https://github.com/abrahamFerga/scrum-skillsWrote 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.
[](https://agentmods.dev/skills/abrahamferga/scrum-skills/dev-pr-description)<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>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.
| Model | Per session | Once 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 |
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.
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
- Check for active
mcp__azure-devops__*tools →$PM_TOOL = ado - Check for active
mcp__jira__*tools →$PM_TOOL = jira - 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:
- Branch name — extract a pattern like
feature/#1234-,feat/PROJ-456-,dev/1234/, etc. - Commit messages — look for
#1234,PROJ-456,Refs:,Closes:, orFixes:references - 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?"
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.
- 7d ago First seen · 128 lines · 107 tokens per session scan A ff44de26b987
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.
Other skills, from other repositories
argo-cd
Skill "argo-cd" from ashish7802/awesome-api-skills, covering argo cd skill, ecosystem graph, quick start, production patterns and the app of apps pattern.
git
Skill "git" from ashish7802/awesome-api-skills, covering git skill, ecosystem graph, quick start, production patterns and interactive rebase.
github
The GitHub REST API (v3) allows deep integration with Git data, pull requests, and GitHub Actions. This skill emphasizes the Octokit SDK.
github-project-management
Comprehensive GitHub project management with swarm-coordinated issue tracking, project board automation, and sprint planning.
git-jira-integration
Integration between Git workflows and Jira issues. Generates branch names from issues, validates commit messages, and provides PR context from Jira specifications.
git-operations
Git repository operations including branching, committing, pushing, and viewing history. Use for version control tasks. Destructive operations require explicit approval.