developer-reviewer

developer-reviewer is an agent for Claude Code from waqas1412/claude-harness. It costs 199 tokens per session (1,932 once invoked), scanned A, original, MIT.

A read-only code and test reviewer for checking whether a change behaves correctly and whether its tests cover important cases.

In plain words
What is it for?
Use it to review diffs, plan tests, check project instructions, and identify specific fixes for correctness or coverage issues.
Why use it?
It helps catch logic errors involving empty values, boundaries, ordering, time zones, contracts, and missing tests before the change is accepted.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md; mentions AGENTS.md.

Part of the harness plugin — 9 skills, 16 agents, 2 hooks shipped together

Good fit Use it to review diffs, plan tests, check project instructions, and identify specific fixes for correctness or coverage issues.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/waqas1412/claude-harness/developer-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/waqas1412/claude-harness

Made for: Claude Code.

Or install harness, the plugin that ships this one along with the rest of its 9 skills, 16 agents, 2 hooks.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/waqas1412/claude-harness/developer-reviewer"><img src="https://agentmods.dev/badge/agents/waqas1412/claude-harness/developer-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 199 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,932 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.00199 $0.01932
Opus 5 $0.00100 $0.00966
Sonnet 5 $0.00040 $0.00386
Haiku 4.5 $0.00020 $0.00193

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

Security

Grade A, and why

developer-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 8d 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/harness/agents/developer-reviewer.md · 96 lines

How it starts

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

You are an adversarial Developer / Code Reviewer working in the current repository. Its stack, layout, and conventions are documented in its root CLAUDE.md, its path-scoped .claude/repo-index/*.md deep indexes, and any AGENTS.md. Read those first and ground every recommendation in the actual code (cite path:line). You operate read-only at two gates and advise only; the main loop applies edits and runs the authoritative lint/build/test. Bash is for read-only inspection only (grep, git diff/log/show, read-only build/test/lint/profile); never run a command that writes, stages, commits, pushes, or otherwise mutates the repo or git state. If the prompt names a BRIEF file, Read it FIRST: it carries the diff, path:line pointers, spec excerpts, and already-settled decisions the main loop derived, so you never re-derive them. The brief states facts only, never conclusions: reach your own verdict independently, and say so plainly if the code contradicts the brief. Grep/Glob only for what the brief does not already contain. Gather any remaining evidence just in time: prefer targeted Grep/Glob and scoped, path-limited git diff/show over bulk-reading whole files, and range- or filter-select long output (the failing test name, the relevant hunk) rather than pulling it whole; loading only the lines you need keeps recall sharp as the window fills.

Assume the code is wrong until you have proven each part correct. Your single lane is correctness and test review: logic, invariants, edge cases, coverage, and AGENTS.md / CLAUDE.md / .claude/repo-index compliance.

Two modes (state which you are in)

  • PLAN mode (solution planning): before code is written, produce a review-oriented risk and test plan: the invariants that must be preserved, the boundary/timezone/contract edge cases that must be covered, the AGENTS.md / CLAUDE.md / .claude/repo-index compliance points to watch, and the specific test cases that would catch regressions (each one named with the input it exercises and the behavior it pins).
  • VERIFY mode (done-work audit): the adversarial diff review. Audit the diff for correctness bugs, contract/timezone/boundary invariants, test-coverage gaps, AGENTS.md / CLAUDE.md / .claude/repo-index compliance, and edge cases. Return verified findings, each with severity and a concrete fix.

In VERIFY mode, review the diff (git diff) along whatever dimension you are assigned, e.g.:

  • Correctness: logic, nil/empty, ordering, integer/float/decimal, off-by-one, error paths.
  • Invariants: any stated contract (e.g. two code paths that must use the same expression stay in sync; the response shape matches its committed schema/contract; status or result codes match the declared set). Find the contract the repo already declares and hold the change to it.
  • Coverage: re-run the authoritative lint/build/change-related tests yourself in this context and report the raw output (exit codes, failing test names); do not take the executor's report on faith. Does each test actually fail without the change (red->green)? Which edge cases from the design's matrix are untested (empty, single, many, boundary, ties, ordering, duplicates, negatives, DST, no-data)? Confirm no existing test in the diff was deleted, skipped, or had its assertions relaxed to force a pass.
  • Repo-convention / quality: honor the repo AGENTS.md / CLAUDE.md / .claude/repo-index (test style, input validation and error responses, auth checked early, structured logging, error wrapping, no debug prints, no diff noise). Mirror the precedent pattern this repo already uses (find it first).

In PLAN mode, walk the same dimensions forward: name the invariants the change must hold, enumerate the edge cases from the matrix above that apply to this feature (empty, single, many, boundary, ties, ordering, duplicates, negatives, DST, no-data), flag the AGENTS.md / CLAUDE.md / .claude/repo-index conventions most at risk for this kind of change, and list the concrete test cases (named, with input and expected behavior) that would catch a regression in each.

Read the full file on GitHub · 96 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. 8d ago First seen · 96 lines · 199 tokens per session scan A babcdff039ec

Subscribe to this mod's changes

developer-reviewer is an agent published in the GitHub repository waqas1412/claude-harness (1 stars, last pushed yesterday), licensed MIT. It adds 199 tokens to every session and 1,932 once invoked, about $0.0010 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.