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/procoders/superpowers-v/pr-reviewnpx skills add procoders/superpowers-v --skill pr-reviewgit clone --depth 1 https://github.com/procoders/superpowers-vWrote 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/procoders/superpowers-v/pr-review)<a href="https://agentmods.dev/skills/procoders/superpowers-v/pr-review"><img src="https://agentmods.dev/badge/skills/procoders/superpowers-v/pr-review.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.00096 | $0.05135 |
| Opus 5 | $0.00048 | $0.02567 |
| Sonnet 5 | $0.00019 | $0.01027 |
| Haiku 4.5 | $0.00010 | $0.00513 |
Grade A, and why
pr-review 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 — 271 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PR Review — Two-Axis, Stack-Agnostic Deep Code Review
Philosophy
The purpose of reviewing a change is to build shared understanding of what the change is trying to do, then systematically hunt for the bugs and edge cases that intent reveals. Every diff carries implicit assumptions, unstated invariants, and ambiguous decisions. The review walks through them one by one.
When neither the codebase nor the user can resolve a question deterministically — when it's a real unknown about author intent or non-local context — that question itself becomes a review comment for the author to answer. The goal is zero unexamined assumptions before the review is finalized.
The two review axes (Standards ⊥ Spec)
The diff is checked along two deliberately separate axes by parallel, context-isolated sub-agents (Phase 3.5):
- Standards — does the code conform to this repo's documented conventions (discovered in Phase 0)?
- Spec — does the code faithfully implement the originating spec / issue / story / PRD?
A change can pass one axis and fail the other:
- Code that follows every standard but implements the wrong thing → Standards pass, Spec fail.
- Code that does exactly what the issue asked but breaks the project's conventions → Spec pass, Standards fail.
The two axes run as separate sub-agents so neither pollutes the other's context, and their findings are reported side by side, never merged or reranked across axes — separation stops one axis from masking the other.
Prime Directives
- Review only — never modify code. No edits, fixes, commits, pushes, or merges. If the user asks for a fix mid-review, stop and confirm they want to leave the review before touching code.
- Exhaust the codebase before asking. Every question to the user (or the author) must include an
Already checked:line citing what you grepped/read and why it didn't answer it. If you can't write that line, you haven't explored enough. See references/exploration-checklist.md. - Use AskUserQuestion for every judgment question. Never plain-text a question. Lead with your recommendation (first option,
(Recommended)). Batch up to 4 same-domain questions per call. - Don't surface what the code already answers. Anti-pattern: asking something that 30 seconds of
grepresolves. Reserve user questions for genuine judgment calls and author-intent for genuine non-local unknowns. - Stay concrete. Anchor every question and finding to a specific
file:lineand a specific failure mode. - Promote real unknowns to review comments. When neither code nor user can answer, record as an Open Question for the Author (defaults to post =
[x]). - Verdict and confidence are mandatory. Every finding gets both before the user sees the triage table.
What ships with it
4 files 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 · 271 lines · 96 tokens per session scan A e85674955145
pr-review is a skill published in the GitHub repository procoders/superpowers-v (35 stars, last pushed 5d ago), licensed MIT. It adds 96 tokens to every session and 5,135 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-30.
Other skills, from other repositories
subagent-driven-development
Use when executing implementation plans with independent tasks in the current session.
write-documentation
Use when writing or substantially rewriting human-facing prose: documentation, README, guides, blog posts, emails, Slack messages, PR descriptions, release notes, or any text a human will read. Not for code comments, commit messages, or agent-to-agent communication.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
research-driven-development
Use when the user asks a question about a topic, requests research, or when understanding something is needed before planning. Triggers on "research this", "what is X", "how does Y work", "compare A vs B", "investigate", "deep dive", "look into".
document-release
Use when implementation on a branch is complete and it is about to be merged or PR'd — or when finishing-a-development-branch reaches its docs-audit gate — and after code changes are committed, to ensure all project documentation accurately reflects shipped code. Covers README, ARCHITECTURE, CONTRIBUTING, CHANGELOG…
finishing-a-development-branch
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup.