receiving-code-review

receiving-code-review is a skill for Claude Code from andreymudri/claude-teammates. It costs 28 tokens per session (1,426 once invoked), scanned A, original, MIT.

A guide for handling code-review feedback by checking each finding against the actual code before changing anything. A review finding is a reviewer’s claim about a possible problem, not automatically a confirmed defect.

In plain words
What is it for?
Use it after receiving human or automated review comments to inspect the relevant code, verify the claim, and then decide whether and how to implement the suggestion.
Why use it?
It reduces the risk of blindly applying incorrect suggestions or agreeing without technical evidence. This keeps fixes focused on real problems.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the claude-teammates plugin — 14 skills, 3 agents, 2 hooks shipped together

Good fit Use it after receiving human or automated review comments to inspect the relevant code, verify the claim, and then decide whether and how to implement the suggestion.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andreymudri/claude-teammates/receiving-code-review
Install

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.

Any agent
npx skills add andreymudri/claude-teammates --skill receiving-code-review
Clone the repo
git clone --depth 1 https://github.com/andreymudri/claude-teammates

Made for: Claude Code.

Or install claude-teammates, the plugin that ships this one along with the rest of its 14 skills, 3 agents, 2 hooks.

Wrote 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.

agentmods badge for receiving-code-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/andreymudri/claude-teammates/receiving-code-review/github.svg)](https://agentmods.dev/skills/andreymudri/claude-teammates/receiving-code-review)
Your own site
<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.

agentmods 80×15 button for receiving-code-review

Your own site · 80×15
<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>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,426 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 9d ago against content hash bbe36651d571, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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.

skills/receiving-code-review/SKILL.md · 163 lines

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

Read the full file on GitHub · 163 lines

Changes

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.

  1. 9d ago First seen · 163 lines · 28 tokens per session scan A bbe36651d571

Subscribe to this mod's changes

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.

Related

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…

nowork-studio/notfair-plugin · 184 tokens

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.

monotykamary/pi-fabric · 50 tokens

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.

monotykamary/pi-fabric · 36 tokens

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.

spencermarx/open-code-review · 44 tokens

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…

spencermarx/open-code-review · 178 tokens

hatch3r-refactor

Internal code quality improvement workflow without changing external behavior. Use when refactoring code structure, simplifying modules, or improving maintainability.

hatch3r/hatch3r · 32 tokens