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/self-reviewnpx skills add PrabhdeepSingh/claude-plugins --skill self-reviewgit 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/self-review)<a href="https://agentmods.dev/skills/prabhdeepsingh/claude-plugins/self-review"><img src="https://agentmods.dev/badge/skills/prabhdeepsingh/claude-plugins/self-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.1 | $0.00074 | $0.04862 |
| Opus 5 | $0.00037 | $0.02431 |
| Sonnet 5 | $0.00015 | $0.00972 |
| Haiku 4.5 | $0.00007 | $0.00486 |
Grade A, and why
self-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 today.
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 — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Self-review — point attention, don't bless the change
A self-review is not a score. It is not an approval. It is a pointer: here are the spots a reviewer should look hardest at, and here is why. Self-scoring rubber-stamps the model's own work — the model that wrote the code is the least reliable judge of whether it's right. That bias is structural, so on any substantial diff the reading is taken away from the author entirely: independent lenses that never saw this conversation each read the diff cold, and their findings then have to survive a default-reject bar in this session. Author-blindness is defeated by fresh eyes; finding-inflation is defeated by making every finding earn its place.
When to apply this
- Conductor hand-back (
/sonu:buildPhase 3) — before handing back to the user. - Ship pre-PR fix loop (
/sonu:shipPhase 1.5) — each pass of the loop runs this skill; the final pass's list seeds the## Risk / reviewer attentionsection of the PR body. - Standalone — any time the user says "self-review", "what should I look at", "what's risky here", or similar; or when a change is finished and about to be handed off. When invoked directly as
/sonu:self-review, review$ARGUMENTS— the text typed after the invocation; if that token appears literally or is empty, review the working tree / current branch per the diff-picker below.
How to apply this
1. Read the diff.
Pick the right diff command for the current state:
- Uncommitted changes (working tree dirty):
git diff HEAD— plusgit status --porcelainto catch untracked files. Brand-new files never added to the index do not appear ingit diff HEADat all; read each untracked file directly and include it in the review. A change made entirely of new files (a fresh module plus its tests) is the classic case wheregit diff HEADshows nothing while there is plenty to review. - Just committed (working tree clean, reviewing what was just committed):
git show HEADorgit diff HEAD^ HEAD - Staged only:
git diff --cached - Whole branch, about to open a PR (clean multi-commit branch):
git diff origin/<base>...HEAD(three dots = diff from the merge base). Reviewing only the last commit on a multi-commit branch misses risks in the earlier ones.
What ships with it
2 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.
- today Changed · +2 lines ecbeb07ddb7c
- 5d ago First seen · 150 lines · 74 tokens per session scan A fa63ca7f12a4
self-review is a skill published in the GitHub repository PrabhdeepSingh/claude-plugins (3 stars, last pushed 4d ago), licensed MIT. It adds 74 tokens to every session and 4,862 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…
review
5-pass structured code review — correctness, security, performance, readability, consistency.
create-app
Guided journey from a raw app idea to a validated, cleanly architected first version that ships on a sustainable cadence. Orchestrates ten skills phase by phase - lean-startup, design-sprint, clean-architecture, domain-driven-design, clean-code, pragmatic-programmer, system-design, ios-hig-design, 37signals-way…