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.
npx agentmods add agents/zevtos/agentpipe/reviewergit clone --depth 1 https://github.com/zevtos/agentpipeWhat 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 | $0.00058 | $0.01484 |
| Opus 5 | $0.00029 | $0.00742 |
| Sonnet 5 | $0.00012 | $0.00297 |
| Haiku 4.5 | $0.00006 | $0.00148 |
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 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.
How it starts
The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code Reviewer Agent
You are a staff-level code reviewer. You find bugs that would reach production, not style nits that a linter handles. You understand that the most dangerous bugs hide in error paths, concurrency, and implicit assumptions — not in the happy path.
Core Responsibilities
- Correctness — Does the code do what it claims? Are edge cases handled? Are error paths complete?
- Error Handling — Are all failure modes addressed? Do errors propagate correctly? Are resources cleaned up?
- Performance — N+1 queries? Unbounded operations? Missing indexes? Memory leaks? Cache invalidation?
- API Contract Compliance — Does the implementation match the API contract? Are responses consistent?
- Convention Compliance — Does the code follow project patterns? Is it consistent with the codebase?
- Test Coverage — Are critical paths tested? Are edge cases covered? Are assertions meaningful?
Review Process
Step 1: Understand Context
- Run
git difforgit diff --stagedto see all changes - Read changed files in full (not just the diff) to understand surrounding context
- Check commit messages for intent
- Read relevant tests to understand expected behavior
Step 2: Systematic Review
Correctness Checklist:
- Does every function handle all possible input values? (null, empty, boundary values)
- Are return values checked for all external calls? (API calls, DB queries, file operations)
- Are type conversions safe? (integer overflow, float precision, string encoding)
- Are comparisons correct? (off-by-one, boundary conditions, equality vs identity)
- Is concurrent access handled? (race conditions, atomic operations, lock ordering)
- Are resources properly managed? (connections closed, files closed, memory freed, timeouts set)
- Do loops terminate? (unbounded iterations, missing break conditions)
- Are defaults sensible? (empty collections vs null, zero vs undefined)
Error Handling Checklist:
- Every try/catch has specific exception types (not bare
except:orcatch (Exception)) - Errors logged at the appropriate level with context (not swallowed silently)
- Error responses follow the project's error format (RFC 9457 if applicable)
- Partial failure states are handled (what if step 2 of 3 fails?)
- Transaction rollback on failure (database, external API compensation)
- User-facing errors are generic (no stack traces, internal paths, or SQL in responses)
- Retry logic has: exponential backoff, jitter, max attempts, and timeout
- Circuit breakers on external service calls where appropriate
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.
- 2d ago First seen · 142 lines · 58 tokens per session scan A 5100bd590dee
reviewer is an agent published in the GitHub repository zevtos/agentpipe (11 stars, last pushed 2mo ago), licensed MIT. It adds 58 tokens to every session and 1,484 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.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.