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 agentmods add skills/prabhdeepsingh/claude-plugins/pr-conventionsnpx skills add PrabhdeepSingh/claude-plugins --skill pr-conventionsgit clone --depth 1 https://github.com/PrabhdeepSingh/claude-pluginsWrote 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/prabhdeepsingh/claude-plugins/pr-conventions)<a href="https://agentmods.dev/skills/prabhdeepsingh/claude-plugins/pr-conventions"><img src="https://agentmods.dev/badge/skills/prabhdeepsingh/claude-plugins/pr-conventions.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 | $0.00080 | $0.04084 |
| Opus 5 | $0.00040 | $0.02042 |
| Sonnet 5 | $0.00016 | $0.00817 |
| Haiku 4.5 | $0.00008 | $0.00408 |
Grade A, and why
pr-conventions 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.
How it starts
The opening of the file, as written. The whole thing — 232 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PR conventions — right template, living description, honest replies
A PR body is the reviewer's briefing: it should match the change type so reviewers apply the right lens, stay accurate as fixes land, and every thread should get a reply that closes the loop. This skill handles all three.
When to apply this
- Opening a PR (
/sonu:shipPhase 1) — scan for a team template, classify the change type, fill the matching built-in template, embed theRISKSlist in the risk section (Section A → B). - After fixes land (after
/sonu:shipPhase 4 push, and within each Phase 6 re-review cycle) — re-render the description in place (Section C). - Responding to reviewer comments (
/sonu:shipPhase 5, or standalone) — reply to every open inline thread with the right wording; resolve bot threads but leave human threads for the reviewer to resolve (Section D).
A — Discover the team template first
Before reaching for a built-in template, scan for the repo's own PR template. The team standard wins.
# Single-file locations take precedence over multi-template directories.
# Check files first; only look for a directory if no file is found.
# GitHub supports the template in .github/, the repo root, or docs/, in either case spelling —
# on a case-sensitive filesystem (Linux, dev containers) both spellings must be checked explicitly.
TEMPLATE_FOUND=""
for f in \
".github/PULL_REQUEST_TEMPLATE.md" ".github/pull_request_template.md" \
".github/PULL_REQUEST_TEMPLATE.txt" ".github/pull_request_template.txt" \
".github/PULL_REQUEST_TEMPLATE" ".github/pull_request_template" \
"PULL_REQUEST_TEMPLATE.md" "pull_request_template.md" \
"PULL_REQUEST_TEMPLATE.txt" "pull_request_template.txt" \
"PULL_REQUEST_TEMPLATE" "pull_request_template" \
"docs/PULL_REQUEST_TEMPLATE.md" "docs/pull_request_template.md" \
"docs/PULL_REQUEST_TEMPLATE.txt" "docs/pull_request_template.txt" \
"docs/PULL_REQUEST_TEMPLATE" "docs/pull_request_template"; do
[ -f "$f" ] && { TEMPLATE_FOUND="SINGLE:$f"; break; } # -f: extension-less names (GitHub allows them) only match files, so the dir scan below is unaffected
done
if [ -z "$TEMPLATE_FOUND" ]; then
for d in ".github/PULL_REQUEST_TEMPLATE" ".github/pull_request_template" \
"PULL_REQUEST_TEMPLATE" "pull_request_template" \
"docs/PULL_REQUEST_TEMPLATE" "docs/pull_request_template"; do
[ -d "$d" ] && { TEMPLATE_FOUND="MULTI:$d"; break; }
done
fi
echo "$TEMPLATE_FOUND"
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 4d ago First seen · 232 lines · 80 tokens per session scan A 71d2e6a6cf32
pr-conventions is a skill published in the GitHub repository PrabhdeepSingh/claude-plugins (3 stars, last pushed 5d ago), licensed MIT. It adds 80 tokens to every session and 4,084 once invoked, about $0.0004 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
top-design
Create award-winning, immersive web experiences at the level of Awwwards-featured agencies. Use when the user mentions "Awwwards quality", "make my site stunning", "scroll animations", "parallax storytelling", "cinematic web design", "portfolio site", or "brand experience". Also trigger when elevating a standard…
design-everyday-things
Apply foundational design principles: affordances, signifiers, constraints, feedback, and conceptual models. Use when the user mentions "why is this confusing", "affordance", "error prevention", "discoverability", "human-centered design", "mental model", "mapping", "seven stages of action", "users keep making…
traction-eos
Implement the Entrepreneurial Operating System (EOS) to align vision and execution across a company. Use when the user mentions "EOS", "Entrepreneurial Operating System", "V/TO", "quarterly rocks", "Level 10 meetings", "accountability chart", "IDS process", "my company feels chaotic", "we keep having the same…
watch
File sentinel that monitors the working directory for changes and marker comments, then auto-triggers appropriate skills. Poll-based via git diff against the last scan commit. Writes intake items for batch processing and routes marker actions through /do. Use for automatic reactions to file changes; do NOT use for…
pr-watch
Local PR watcher. Monitors CI status, automatically fixes failing checks by reading failure logs and applying targeted fixes, then optionally merges when all checks pass. Local CLI analog to Claude Code's cloud auto-fix feature.
review
5-pass structured code review — correctness, security, performance, readability, consistency.