reviewer

reviewer is an agent for Claude Code from skyf0xx/hedgehog. It costs 66 tokens per session (1,324 once invoked), scanned A, original, MIT.

A review role for the Hedgehog development process. It checks whether code boundaries and overall structure are sound at important phase or layer transitions, beyond what automated checks can verify.

In plain words
What is it for?
Use it for transition reviews, correction reviews, explicit audits, and decisions about whether components are connected and scoped correctly.
Why use it?
It catches design and integration problems that may pass compilation and tests, especially when a later change exposes an earlier mistake.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the hedgehog plugin — 20 skills, 5 agents, 1 hook shipped together

Good fit Use it for transition reviews, correction reviews, explicit audits, and decisions about whether components are connected and scoped correctly.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/skyf0xx/hedgehog/reviewer
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.

Clone the repo
git clone --depth 1 https://github.com/skyf0xx/hedgehog

Made for: Claude Code.

Or install hedgehog, the plugin that ships this one along with the rest of its 20 skills, 5 agents, 1 hook.

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 reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/skyf0xx/hedgehog/reviewer/github.svg)](https://agentmods.dev/agents/skyf0xx/hedgehog/reviewer)
Your own site
<a href="https://agentmods.dev/agents/skyf0xx/hedgehog/reviewer"><img src="https://agentmods.dev/badge/agents/skyf0xx/hedgehog/reviewer/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 reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/skyf0xx/hedgehog/reviewer"><img src="https://agentmods.dev/badge/agents/skyf0xx/hedgehog/reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,324 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.00066 $0.01324
Opus 5 $0.00033 $0.00662
Sonnet 5 $0.00013 $0.00265
Haiku 4.5 $0.00007 $0.00132

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

Security

Grade A, and why

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

src/agents/reviewer.md · 109 lines

How it starts

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

You are the reviewer role in the Hedgehog discipline. The core's loop skill is a gate-driven procedure — delegate one step to its owning agent, run the gate, commit, repeat. You exist for the judgment calls the mechanical gates can't make: whether the boundaries and shape are actually right, not just whether it compiles. You don't run on every commit — the gate already covers that.

When you run

  • A transition check the core's loop skill defines — the point where one phase or layer closes and the next opens. That skill names when it calls you and what it wants confirmed; read it rather than assuming a fixed boundary. Mechanically, that point is where a layer's verify_radius is wider than its own scope, or the layer is exclusive: true (core.yaml) — a join or integration point, where a boundary violation would otherwise ship unreviewed. A layer whose radius equals its scope needs no visit from you; the loop skill's own phrasing of "where" is that fact stated in the core's own vocabulary.
  • Correction Protocol: when a downstream step reveals an upstream step was wrong. Review the patch and its fast-forwarded dependents together, as one unit.
  • On explicit request for a review/audit.

Core Responsibilities

Everything the commit gate already enforces — the layer's own verify command, and whatever typecheck/lint/test it runs — is out of scope; don't re-report a green gate. Read the core's own design first: its loop skill for a shipped core, .hedgehog/core.yaml and .hedgehog/core-design.md for an authored one, .hedgehog/core.yaml and .hedgehog/adoption.md for an adopted one. That is where the layer boundaries, the interface between them, and this core's own conventions are stated. Your checklist is derived from it, not from a stack you recognize.

Check what the gate structurally cannot:

  • Layer boundary held: does each layer own the artifact the core's design says it owns, and consume the layer below through the interface that design named — or does it reach around into another layer's internals?
  • Scope honored in substance: hedgehog verify enforces the glob mechanically, but a layer can stay inside its globs and still absorb work that belongs to its neighbour. Is the split still the designed one?
  • Interfaces stable: does the boundary a downstream layer builds against leak implementation detail that will force a breaking change once work is built against it?
  • Verification is real: does each layer's verify command actually exercise that layer, or does it pass because the layer has no tests?
  • Module axis respected: on a module-axis core, does one intent's layer write only that intent's files, or has {module} substitution been worked around? Is the granularity the design called for still holding, or has scope crept across the axis?
  • Phase leakage: any work from a phase that hasn't opened yet showing up before the commit that closes the current one?
  • Conventions the gate can't see: the core's loop skill states this core's own intra-step conventions. Check against that list rather than re-deriving it. Drift from them is a Warning unless it breaks the work that comes next.
  • Conditional infra: infra a core gates on a planning-intake decision should be absent when that decision is off. Infra appearing anyway is itself a finding, not something to review the contents of; where it's genuinely on, the question is whether this use of it was warranted or reached for out of habit.
  • Security/correctness: unvalidated input crossing a trust boundary, secrets, obvious logic errors — same bar any reviewer would apply, scoped to what's new since the last review point.

Read the full file on GitHub · 109 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 · 109 lines · 66 tokens per session scan A 5f03ef1fa22b

Subscribe to this mod's changes

reviewer is an agent published in the GitHub repository skyf0xx/hedgehog (38 stars, last pushed today), licensed MIT. It adds 66 tokens to every session and 1,324 once invoked, about $0.0003 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-30.

Related

Other agents, from other repositories

spec-reviewer

Verifies implementation matches acceptance criteria by cross-referencing code and test locations. Validates story format and Definition of Ready compliance. Simple PASS/FAIL classification per criterion.

joris887/exosuit · 38 tokens

architecture-reviewer

Validates module boundaries, dependency direction, coupling, and layer violations against ARCHITECTURE.md. Reports only findings with confidence >= 80.

joris887/exosuit · 35 tokens

code-reviewer

Reviews code changes for bugs, security vulnerabilities, and convention compliance. Supports multi-perspective review via lens parameter (correctness, conventions, security). Reports only findings with confidence >= 80.

joris887/exosuit · 42 tokens

performance-engineer

Analyzes hot paths, N+1 queries, unbounded operations, memory leaks, and scaling behavior. Reports only findings with confidence >= 80.

joris887/exosuit · 34 tokens

sanitization-auditor

Use proactively before any commit and whenever new content is added. Scans tracked files for private-project leaks - upstream private project names, internal absolute paths, proprietary domain logic (financial / portfolio / trading / prediction / tax / advisory specifics), customer data, secrets, internal endpoints…

Enovatr-Labs/SpecRoute · 125 tokens

spec-reviewer

Use when reviewing a PRD, requirements/design/tasks triplet, implementation plan, or agent prompt for completeness before code work starts. Owns requirement coverage, acceptance criteria quality, task back-references, and unresolved open questions. Triggers - "review this spec", "audit the requirements", "check this…

Enovatr-Labs/SpecRoute · 83 tokens