review-code

review-code is a skill for Claude Code from dorayo/orchestrix-skills. It costs 25 tokens per session (644 once invoked), scanned A, original, MIT.

A code-review checklist for comparing a software change with the requirements it was meant to meet, then checking how well it is built.

In plain words
What is it for?
Use it after implementing a feature to review a code difference against its specification and produce findings ranked by urgency.
Why use it?
It helps catch missing requirements, unrequested work, bugs, weak tests, and security or data-loss risks before a change is merged.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the orchestrix-skills plugin — 18 skills shipped together

Good fit Use it after implementing a feature to review a code difference against its specification and produce findings ranked by urgency.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dorayo/orchestrix-skills/review-code
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 dorayo/orchestrix-skills --skill review-code
Clone the repo
git clone --depth 1 https://github.com/dorayo/orchestrix-skills

Made for: Claude Code.

Or install orchestrix-skills, the plugin that ships this one along with the rest of its 18 skills.

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 review-code

README.md
[![agentmods](https://agentmods.dev/badge/skills/dorayo/orchestrix-skills/review-code.svg)](https://agentmods.dev/skills/dorayo/orchestrix-skills/review-code)
Your own site
<a href="https://agentmods.dev/skills/dorayo/orchestrix-skills/review-code"><img src="https://agentmods.dev/badge/skills/dorayo/orchestrix-skills/review-code.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 644 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.00025 $0.00644
Opus 5 $0.00013 $0.00322
Sonnet 5 $0.00005 $0.00129
Haiku 4.5 $0.00003 $0.00064

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

Security

Grade A, and why

review-code 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.

skills/review-code/SKILL.md · 75 lines

What it actually says

Review Code

Review a diff against its spec with fresh eyes. Two verdicts, in order: does it do what was asked, then is it well built.

Core principle: Review the work product against the spec — not the author's reasoning. You get the diff and the spec, not the session that produced them.

Inputs

  • diff — the change to review (a base..head range or a diff file).
  • spec — the story / acceptance criteria the change must satisfy.

Read the spec first. It is your attention lens. Then read the full diff.

Verdict 1 — Spec compliance

For each acceptance criterion: met, missing, or extra (built but not asked for).

  • Missing a criterion → spec verdict is FAIL.
  • Extra scope not in the spec → flag it; over-building is a defect.

Verdict 2 — Code quality

Check, against taste/coding-standards:

  • Correctness and edge cases the tests miss
  • Duplication, unclear names, dead code
  • Tests that assert nothing or test mocks instead of behavior
  • Security / data-loss / trust-boundary issues (always Critical)

Rate each finding: Critical (must fix) · Important (fix before merge) · Minor (note it).

Output: review_report

spec_compliance: pass # pass | fail
missing: [<AC not met>]
extra: [<scope not requested>]
findings:
  - { severity: Important, where: src/x.ts:40, issue: "...", fix: "..." }
verdict: changes_requested # approved | changes_requested

Rules

  • Do not pre-judge. Never decide a finding is fine because "the spec said so" — surface it; conflicts with the spec are the human's call, not yours.
  • Be specific. Every finding has a location and a concrete fix.
  • Findings route back, not to the human. Critical/Important findings go to implement (re-run with this report as qa_feedback). The human sees the result at the end-of-run acceptance, not each review.
  • If the diff is clean, say so plainly and approve.
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. 4d ago Changed · +1 lines 88e32dbb28b7
  2. 8d ago First seen · 74 lines · 25 tokens per session scan A ea771d0bfe44

Subscribe to this mod's changes

review-code is a skill published in the GitHub repository dorayo/orchestrix-skills (2 stars, last pushed 6d ago), licensed MIT. It adds 25 tokens to every session and 644 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.