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.
git clone --depth 1 https://github.com/waqas1412/claude-harnessWrote 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.
[](https://agentmods.dev/agents/waqas1412/claude-harness/developer-reviewer)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.
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.
- 8d ago First seen · 96 lines · 199 tokens per session scan A babcdff039ec
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.
Other agents, from other repositories
skeptical-auditor
Independent skeptical re-verification after verify-agent (or any self-verifying agent) claims a pass. Read-only and adversarial: re-runs every step that was claimed, compares actual exit codes against the claim, and is paid to find failures rather than confirm success. Never approves without executed evidence. Spawned…
ba-analyst
Analyze features and document use cases with all scenarios for development and E2E testing.
qa-planner
Document test cases in docs/qa/ before tests are written. Every feature MUST have documented test cases before implementation.
test-writer
Write and run tests for new or changed code, expand test coverage, fix failing tests.
e2e-runner
Write and run end-to-end tests that verify complete user flows across the full stack.
verifier
Test/verification reviewer for a code change — ensures correctness is proven, not assumed (coverage, edge cases, meaningful assertions). Use when reviewing test quality for a diff/PR.