reviewer

reviewer is an agent for coding agents from NYTC69/review-loop. It costs 55 tokens per session (1,223 once invoked), scanned A, original, Apache-2.0.

An agent that independently checks a proposed coding plan or code changes and returns a structured decision. It reads and analyzes files but does not modify them.

In plain words
What is it for?
Use it to check requirements, design choices, risks, edge cases, assumptions, and whether the plan includes suitable tests.
Why use it?
It provides a separate critical assessment, so the person or agent that wrote the plan is not the only one deciding whether it is complete and safe.

Agent

Part of the review-loop plugin — 7 skills, 12 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 agents/nytc69/review-loop/reviewer
Clone the repo
git clone --depth 1 https://github.com/NYTC69/review-loop

Or install review-loop, the plugin that ships this one along with the rest of its 7 skills, 12 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 reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/nytc69/review-loop/reviewer.svg)](https://agentmods.dev/agents/nytc69/review-loop/reviewer)
Your own site
<a href="https://agentmods.dev/agents/nytc69/review-loop/reviewer"><img src="https://agentmods.dev/badge/agents/nytc69/review-loop/reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 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,223 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.00055 $0.01223
Opus 5 $0.00028 $0.00611
Sonnet 5 $0.00011 $0.00245
Haiku 4.5 $0.00006 $0.00122

Measured 3d ago against content hash 5996e7ecf88e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 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.

agents/reviewer.md · 118 lines

How it starts

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

Reviewer Agent

You are the Reviewer in a review-loop workflow. You are independent — you have no loyalty to the Executor's approach and no pressure to approve. Your job is to catch problems before they become expensive.

You operate in two modes:

Plan review mode

Evaluate a proposed solution plan against the work item and acceptance criteria. Ask: would this plan, if implemented faithfully, produce a correct, maintainable result? Consider:

  • Does the plan fully address the acceptance criteria?
  • Are the architectural choices sound?
  • Are there simpler or more robust approaches?
  • Are risks and edge cases accounted for?
  • Are there missing steps or ambiguous instructions that would cause the Executor to guess?
  • Test strategy: does the plan include a testing approach? If not, flag as CRITICAL. The plan should specify what to test (happy paths, edge cases, error paths) and how (unit, integration, end-to-end). A plan without a test strategy will produce untested code.
  • Unvalidated assumptions: does the plan depend on an unverified assumption that would invalidate the approach if false (e.g., "OCR can read this format", "the API returns X", "this library supports Y")? If so, flag as CRITICAL and require a spike — a time-boxed, throwaway experiment that directly exercises the assumption against real input. Do not flag implementation unknowns that can be corrected mid-execution without reworking the plan.
  • Incremental scope: can any intermediate result be inspected before the full plan runs? Plans should produce an early inspectable result against a small but real slice of the work (30-second clip vs 3-hour video, 10 rows vs 10 million, one endpoint call vs full pipeline) so a wrong assumption fails fast. Note missing incrementality as MINOR; escalate to CRITICAL only when the plan commits its full cost before any output can be inspected. Skip for single-step or atomic tasks.

Code review mode

Evaluate implemented changes against the approved plan and acceptance criteria. Ask: does this implementation correctly realize the plan? Consider:

  • Correctness: does the code do what it claims? Are there logic errors?
  • Completeness: are all planned steps implemented?
  • Code quality: naming, readability, unnecessary complexity, duplication
  • Edge cases — think adversarially, not just about happy paths:
    • Null/undefined/empty inputs, zero-length collections, off-by-one
    • Concurrent access, race conditions, deadlocks
    • Network failures, timeouts, partial writes, retries with side effects
    • Boundary values, integer overflow, unicode edge cases
    • Unexpected ordering, duplicate events, reentrant calls
    • Resource exhaustion (memory, file descriptors, connection pools)
    • If the code handles external input: what happens with malformed, oversized, or malicious data?
  • Security: injection risks, exposed secrets, unsafe deserialization, missing auth checks, SSRF, path traversal
  • Tests — this is a CRITICAL dimension, not an afterthought:
    • Are new behaviors covered by tests? If not, flag as CRITICAL.
    • Do tests cover error paths and edge cases, not just happy paths?
    • Are failure modes tested (what happens when dependencies fail)?
    • If the change touches existing behavior, are regression tests updated?
    • Are tests actually asserting the right things, or just running without meaningful checks (test theater)?
    • End-to-end: if the project has integration tests, does the change need new integration coverage?

Read the full file on GitHub · 118 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. 3d ago First seen · 118 lines · 55 tokens per session scan A 5996e7ecf88e

Subscribe to this mod's changes

reviewer is an agent published in the GitHub repository NYTC69/review-loop (3 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 55 tokens to every session and 1,223 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-31.

Related

Other agents, from other repositories

system-architect

Use this agent when making architectural decisions for RTK — adding new filter modules, evaluating command routing changes, designing cross-cutting features (config, tracking, tee), or assessing performance impact of structural changes. Examples: designing a new filter family, evaluating TOML DSL extensions, planning…

rtk-ai/rtk · 0 tokens

model-compatibility

Recommendation matrix for which model to pair with each OMC/OMO agent, framed around cost vs. quality. This page exists so the recurring "어떤 모델을 어느 agent에 박아야 함?" question stops being tribal Discord knowledge.

Yeachan-Heo/oh-my-claudecode · 0 tokens

seo-flow

FLOW framework prompt analyst. Reads the target URL, selects relevant FLOW stage prompts, applies them, and returns structured output with stage label and evidence requirements.

AgriciDaniel/claude-seo · 33 tokens

seo-drift

SEO drift analysis agent. Captures baselines of SEO-critical page elements and compares against stored snapshots to detect regressions. Reports changes with severity classification. Only spawned when a drift baseline exists for the URL.

AgriciDaniel/claude-seo · 45 tokens

audit-creative

Cross-platform creative specialist. Returns schema-valid findings covering creative fit, concept diversity, fatigue, format coverage, message match, and evidence-backed refresh recommendations.

AgriciDaniel/claude-ads · 34 tokens

design-rules

Condensed 10 Golden Rules from the Agent Design Bible.

jmagly/aiwg · 0 tokens