review

A review skill for examining a code difference or selected files against coding rules, project conventions, requested acceptance criteria, runtime evidence, and documentation. A code difference shows what changed between two versions.

In plain words
What is it for?
Use it to review branch changes or specific files and check implementation, verification evidence, conventions, and documentation.
Why use it?
It focuses the review on actionable problems and produces one verdict that stays blocked while any covered issue remains.

Skill for Claude CodeCodex

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/ribeirogab/specwright/review
Any agent
npx skills add ribeirogab/specwright --skill review
Clone the repo
git clone --depth 1 https://github.com/ribeirogab/specwright

Made for: Claude Code, Codex.

Per session 107 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,948 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.00107 $0.02948
Opus 5 $0.00053 $0.01474
Sonnet 5 $0.00021 $0.00590
Haiku 4.5 $0.00011 $0.00295

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

Security

Grade A, and why

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

plugins/sw/skills/review/SKILL.md · 213 lines

How it starts

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

review — review against the universal standard and the project's conventions

You are about to write a code review. LLM training pushes you toward headers, emojis, and praise — override it. The review is plain text and MUST match one of the four templates below. There are no other valid shapes. Findings only enforce the universal coding standard below and what the repo already defines; this skill does not invent taste.

Forbidden in your output

  • Any emoji or pictograph.
  • Any markdown header (#/##/###), e.g. ## Review, ### Blocker.
  • Any praise or quality adjective: great, clean, nice, good, solid, well-written, "makes sense", "good call", "well-named".
  • Any signature line, summary table, score, or "positives" section.
  • Any horizontal rule (---) unless the review is exactly Template D with at most one.

The reviewer's standard — read BEFORE reviewing

The review enforces two things, in this order:

  1. The universal coding standard below — the reviewer's built-in rubric. It always applies.
  2. The project's own standards, read from every applicable canonical AGENTS.md or AGENTS.override.md for the areas the diff touches. A CLAUDE*.md path is only a host adapter symlink, never the canonical source. When such a file carries a ## Conventions section, open every document it links and treat each as a project standard — a linked convention is as binding as one written inline, and skipping the links silently drops coverage.

A finding that maps to a rubric rule or a convention cites it by name (e.g. "Meaningful Comments", "Modularity", "skill-validation convention").

Universal coding standard

The reviewer's built-in rubric. PROJECT-SPECIFIC standards come from the canonical AGENTS instructions and the conventions they link; the rules here are the floor that always holds. Findings may cite a rubric rule by name (e.g. "Meaningful Comments", "Modularity").

Unix/ESR philosophy rules:

  • Modularity — simple parts joined by clean interfaces; no tangled cross-coupling.
  • Clarity — clarity beats cleverness; code reads for the next human.
  • Composition — design pieces to connect to other pieces.
  • Separation — separate policy from mechanism, interface from engine.
  • Simplicity — design for simplicity; add complexity only where forced.
  • Parsimony — write a big component only when nothing smaller will do; no speculative scope.
  • Transparency — design for visibility so inspection and debugging stay easy.
  • Robustness — robustness follows from transparency and simplicity.
  • Representation — fold knowledge into data so the logic stays stupid and robust.
  • Least Surprise — do the least surprising thing at every interface.
  • Silence — when there is nothing surprising to say, say nothing (no noise output, no dead logging).
  • Repair — when you must fail, fail noisily and as early as possible.
  • Economy — programmer time is expensive; conserve it over machine time.
  • Generation — prefer generating code over hand-hacking when you can.
  • Optimization — prototype before polishing; get it working before making it fast.
  • Diversity — distrust any claim of the "one true way".
  • Extensibility — design for the future; it arrives sooner than expected.

Read the full file on GitHub · 213 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. 2d ago First seen · 213 lines · 107 tokens per session scan A 8681009bed67

Subscribe to this mod's changes

review is a skill published in the GitHub repository ribeirogab/specwright (3 stars, last pushed 24d ago), licensed MIT. It adds 107 tokens to every session and 2,948 once invoked, about $0.0005 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

review-depth

Decide how much review a change has earned, before reviewing it. Selects quick, standard, or deep from stated signals (reviewable changed lines, directory spread, trust-boundary risk flags, blast radius, documentation-only scope), reports the signal table and the rule that fired, then runs house-review at the selected…

hams-ollo/zen-agent-skills · 180 tokens

doc-sync

Use when code has moved and the documentation may not have, or when a documentation set needs auditing for stale claims. Detects documentation drift by checking prose claims against repository facts, classifies every document as current-state (correctable), contract (report-only, human-owned) or ledger (skipped), and…

hams-ollo/zen-agent-skills · 193 tokens

init-worktracking

Scaffold a portable, agent-optimized spec-driven work-tracking system into the current repository: AGENTS.md (global rules + agent reading protocol), a .tasks/ directory of atomic task files, and (by tier) ROADMAP.md, CHANGELOG.md, a validate.py checker, and thin CLAUDE.md/Cursor/Copilot pointers. Choose a footprint…

hams-ollo/zen-agent-skills · 207 tokens

reconcile-worktrees

Safely consolidate one or more isolated git worktrees (for example left behind by parallel background agents, or from the fix-batch skill) into the main working tree, without committing or merging blindly. Use whenever asked to "reconcile the worktrees", "merge these agent branches", "bring the worktree changes back…

hams-ollo/zen-agent-skills · 161 tokens

verifier-agent

Use before reconciling or landing an implementation to independently verify it against its approved spec and its task's acceptance criteria. Runs the declared verification commands and records each exact outcome, composes the spec-conformance lens so a contract divergence fails the run even when every command passes…

hams-ollo/zen-agent-skills · 166 tokens

spec-author

Use when turning a raw idea, feature request, or bug into a persistent behavioral spec before any tasks or code. Drafts a scenario-based spec (problem, goals, non-goals, constraints, Given/When/Then scenarios with stable S-NNN ids, proposed surface, open questions), composes the spec-quality lens to self-check and…

hams-ollo/zen-agent-skills · 133 tokens