code-review

code-review is a skill for Claude Code, Codex from danweinerdev/claude-sdd-planner. It costs 38 tokens per session (8,251 once invoked), scanned A, original, MIT.

A code review workflow that compares an implementation with its plan and checks it through four separate review perspectives. It looks for changes that drifted from the plan, missing requirements, quality issues, and overlooked problems.

In plain words
What is it for?
Use it to review completed implementation work against a plan, verify specification compliance, scan code quality, and find blind spots.
Why use it?
It reduces the chance that a review misses a gap because one person or one check focused on only part of the change.

Skill for Claude CodeCodex

Part of the sdd-planner plugin — 34 skills, 7 agents shipped together

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.

agentmods
npx agentmods add skills/danweinerdev/claude-sdd-planner/code-review
Any agent
npx skills add danweinerdev/claude-sdd-planner --skill code-review
Clone the repo
git clone --depth 1 https://github.com/danweinerdev/claude-sdd-planner

Made for: Claude Code, Codex.

Or install sdd-planner, the plugin that ships this one along with the rest of its 34 skills, 7 agents.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/danweinerdev/claude-sdd-planner/code-review.svg)](https://agentmods.dev/skills/danweinerdev/claude-sdd-planner/code-review)
Your own site
<a href="https://agentmods.dev/skills/danweinerdev/claude-sdd-planner/code-review"><img src="https://agentmods.dev/badge/skills/danweinerdev/claude-sdd-planner/code-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 8,251 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00038 $0.08251
Opus 5 $0.00019 $0.04126
Sonnet 5 $0.00008 $0.01650
Haiku 4.5 $0.00004 $0.00825

Measured 3d ago against content hash 11850e32b76c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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 3d 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.

commands/code-review/SKILL.md · 378 lines

How it starts

The opening of the file, as written. The whole thing — 378 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/code-review — Implementation Code Review

⚠️ CONTRACT — READ FIRST

This skill's entire value comes from dispatching four intent-isolated sub-agents in parallel and synthesizing their independent reports. You are the orchestrator.

You MUST:

  1. Dispatch all four sub-agents via the Task tool, using their plugin-namespaced names: sdd-planner:drift-detector, sdd-planner:quality-scanner, sdd-planner:spec-compliance, sdd-planner:blind-spot-finder.
  2. Dispatch them in parallel — a single message containing the four built-in Task tool calls, plus one additional Task call for each matching project review lane (see Step 2e and Step 3).
  3. Give each sub-agent only the inputs for its lane. See Step 3 below for the exact input map. Passing extra context destroys the intent isolation that makes the review worthwhile.
  4. Wait for all dispatched lanes (the four built-ins plus any project lanes) to return, then synthesize.

You MUST NOT:

  1. Read the full diff, the phase doc contents, spec contents, or design contents in the primary context and write findings yourself. That is a single-pass review cosplaying as a four-lane review. It is the bug this contract exists to prevent.
  2. Skip the Task dispatch because "you already know the answer" after loading context. The answer you'd produce is exactly the single-pass review this skill exists to replace.
  3. Fall back to self-synthesis if a Task dispatch fails. If dispatch fails, STOP and return a loud error to the user describing which sub-agent failed and why. Do not silently continue.
  4. Use bare sub-agent names (drift-detector, quality-scanner, etc.) for the four built-in lanes in Task calls — plugin agents require the sdd-planner: prefix or they will not resolve. (Project lanes are the exception — they resolve by bare name; see the external-lanes block below.)

External review lanes (best-effort, additive). Beyond the four, a project can plug in its own specialized lanes via the socket defined in shared/review-lanes.md (e.g. a read-only .claude/agents/sql-reviewer.md carrying reviewLane: true). These are additive, read-only, and never abort the four:

  • The four built-ins are the floor and always run. A project lane only ever adds findings — never removes, replaces, or weakens a built-in lane's inputs or dispatch.
  • A project lane that fails to dispatch, errors, or is malformed is recorded and dropped — never aborts the four. The strict "STOP on dispatch failure" rule in this contract applies to the four built-ins only. Synthesis proceeds over the four plus whatever project lanes returned. (Lane responsiveness is the project's responsibility — the socket dispatches and waits; it imposes no timeout, so a lane that hangs will hold up the review.)
  • Failure is not silent: a declared lane that didn't run degrades the verdict (the Output Format's Lane status line — Alignment itself always reflects the returned lanes' findings), and an opt-in required: true lane that didn't run forces Lane status to BLOCKED (it gates the verdict, not the floor). The verdict is computed from the four plus any successful project lanes.
  • Lanes execute repo-supplied instructions with session tool access, so /code-review confirms discovered lanes with the user before dispatch when the target repo isn't the session's own project.

Read the full file on GitHub · 378 lines

Files

What ships with it

1 file 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.

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. 3d ago First seen · 378 lines · 38 tokens per session scan A 11850e32b76c

Subscribe to this mod's changes

code-review is a skill published in the GitHub repository danweinerdev/claude-sdd-planner (2 stars, last pushed 5d ago), licensed MIT. It adds 38 tokens to every session and 8,251 once invoked, about $0.0002 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

weather-fetcher

Instructions for fetching current weather temperature data for Dubai, UAE from Open-Meteo API.

shanraisshan/claude-code-best-practice · 21 tokens

time-fetcher

Instructions for fetching current Dubai time via bash command.

shanraisshan/claude-code-best-practice · 13 tokens

weather-svg-creator

Creates an SVG weather card showing the current temperature for Dubai. Writes the SVG to orchestration-workflow/weather.svg and updates orchestration-workflow/output.md.

shanraisshan/claude-code-best-practice · 36 tokens

hns-lsel-curator

Local Self-Evolution Loop (LSEL) curator — the CLUSTER + drain engine for the GOOS-local PROPOSE→APPLY seam closure (SPEC-LSEL-LOCAL-EVOLUTION-001). Companion-offset drain of .moai/lessons-inbox.jsonl with a drain-side severity filter that drops the 65% Bash-timeout/sandbox noise, eventkey clustering with a frequency…

modu-ai/moai-adk · 135 tokens

hns-workflow-ci-loop

Unified CI watch + auto-fix loop skill. Polls gh pr checks after /moai sync PR creation, classifies required vs auxiliary failures, attempts safe automated patches (max 3 iterations), and escalates semantic failures to the user. Use for CI loop workflow — NOT for general loop iteration patterns (see…

modu-ai/moai-adk · 76 tokens

moai-kanban-foreman

One unattended kanban foreman iteration: watch the backlog queue, dispatch the next operator-picked card to an isolated worker, collect completion evidence on read (not on claims), and report. This is the body the project's loop.md driver invokes each iteration of a bare /loop; it can also be invoked directly to test…

modu-ai/moai-adk · 76 tokens