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 andreymudri/claude-teammates --skill receiving-code-reviewgit clone --depth 1 https://github.com/andreymudri/claude-teammatesWrote 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/andreymudri/claude-teammates/receiving-code-review)<a href="https://agentmods.dev/skills/andreymudri/claude-teammates/receiving-code-review"><img src="https://agentmods.dev/badge/skills/andreymudri/claude-teammates/receiving-code-review/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/andreymudri/claude-teammates/receiving-code-review"><img src="https://agentmods.dev/badge/skills/andreymudri/claude-teammates/receiving-code-review.svg" alt="Reviewed on agentmods" width="80" 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.00028 | $0.01426 |
| Opus 5 | $0.00014 | $0.00713 |
| Sonnet 5 | $0.00006 | $0.00285 |
| Haiku 4.5 | $0.00003 | $0.00143 |
Grade A, and why
receiving-code-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 9d 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 — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Receiving Code Review
Adapted from the MIT-licensed superpowers plugin by Jesse Vincent. See NOTICE.md.
Overview
Code review requires technical evaluation, not emotional performance.
Core principle: verify every finding against the actual code before implementing it. A finding — human or agent — is a claim, not a fact, until it has been checked against what the code actually does.
This matters more here than in most places this skill gets used, because the phase gate
in [[phase-gate]] dispatches tm-reviewer agents, one per lens, and their findings arrive
the same way a human reviewer's would. An agent reviewer can be confidently, fluently
wrong: during construction of this plugin, a reviewer rated a correct passage an
"Important factual error," having conflated two different concurrency limits. Implementing
that finding as written would have introduced a defect. A tm-reviewer finding gets
exactly the same scrutiny as a human one — no more trust because it came with confident
prose, no less because it came from an agent.
The Response Pattern
WHEN receiving a review finding (from a human or from tm-reviewer):
1. READ: the complete finding without reacting
2. UNDERSTAND: restate the claim in your own words (or ask)
3. VERIFY: check the claim against the actual code
4. EVALUATE: is it technically correct for this codebase?
5. RESPOND: technical acknowledgment, evidence-backed pushback, or a fix
6. IMPLEMENT: one item at a time, test each
Verification is not optional and not skippable for findings that "sound right." A finding that sounds authoritative is exactly the kind that most needs checking — that's how the concurrency-limit finding above got as far as it did.
Forbidden Responses
NEVER:
- "Great catch!" / "You're absolutely right!" / "Excellent feedback!" — performative agreement
- Implementing a suggestion before verifying it against the code — blind implementation
- Reflexively agreeing because the finding was phrased with confidence
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.
- 9d ago First seen · 163 lines · 28 tokens per session scan A bbe36651d571
receiving-code-review is a skill published in the GitHub repository andreymudri/claude-teammates (2 stars, last pushed 7d ago), licensed MIT. It adds 28 tokens to every session and 1,426 once invoked, about $0.0001 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
gemini
Cross-model second opinion from Google Gemini — a different AI reviewing the same changes, with deep Google ecosystem knowledge. Three modes: review (pass/fail gate for Google Ads campaigns, SEO metadata, or code), challenge (adversarial stress-test that tries to break your changes), and consult (open Q&A with Gemini…
fabric-spec
Starts a persistent Pi Fabric spec supervisor that audits the main session against a feature design spec and steers only when a requirement lacks verified evidence. Use for strict, unblocked spec compliance while the main agent keeps full freedom to orchestrate.
fabric-advisor
Starts a persistent Pi Fabric peer advisor that reviews the main agent at decision points and surfaces only concrete, material advice. Use for ambient correctness review without another extension.
ocr
AI-powered multi-agent code review. Simulates a team of Principal Engineers reviewing code from different perspectives. Use when asked to review code, check a PR, analyze changes, or perform code review.
OCR Review-to-Approval Loop
Drive a PR to an approved code review by looping OCR's multi-agent review and address steps. Runs /ocr:review then /ocr:address repeatedly until the review verdict is APPROVE, then one final /ocr:address for leftover suggestions, posting every review and every address round to the GitHub PR as comments. Use when the…
hatch3r-refactor
Internal code quality improvement workflow without changing external behavior. Use when refactoring code structure, simplifying modules, or improving maintainability.