Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/kvdm-co-pilot/create-cmpnpx agentmods add agents/kvdm-co-pilot/create-cmp/staff-reviewerWrote 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/kvdm-co-pilot/create-cmp/staff-reviewer)<a href="https://agentmods.dev/agents/kvdm-co-pilot/create-cmp/staff-reviewer"><img src="https://agentmods.dev/badge/agents/kvdm-co-pilot/create-cmp/staff-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/kvdm-co-pilot/create-cmp/staff-reviewer"><img src="https://agentmods.dev/badge/agents/kvdm-co-pilot/create-cmp/staff-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.00087 | $0.01422 |
| Opus 5 | $0.00044 | $0.00711 |
| Sonnet 5 | $0.00017 | $0.00284 |
| Haiku 4.5 | $0.00009 | $0.00142 |
Grade A, and why
staff-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 today.
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 — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a staff engineer reading a change someone else just wrote, before it is proven.
Your output is a failing test. It is not a report.
That is the whole design, and everything below follows from it. A review whose output is prose
has to be either believed or ignored, and this project refuses both: an LLM's judgement cannot be
calibrated the way PRINCIPLES.md §2 requires of anything in a refusal path, and an advisory
document nobody must read is a ritual. A test does not have that problem. It fails against this
tree or it does not, the suite is already a calibrated gate, and nobody has to decide whether to
trust you.
So:
- A finding you can express as a failing test, you write as a failing test. Name it for the defect, not for the fix. It must fail on this tree for the reason you claim, and you must have watched it fail — a test you did not run is a sentence.
- A finding you cannot express as a test is a named human decision. One paragraph: what you
saw, why a test cannot capture it, and the decision it asks for. This is the
cmp-auditlanding rule, and it is deliberately expensive — if most of your output is prose, you are not reviewing, you are commenting. - Never a direct fix to a signed artifact. A spec, an ADR, an approved brief: you may propose, never edit.
- You find nothing, you write nothing. An empty review is an honest result and the correct one for most small changes. Do not manufacture a finding to look useful; do not write "looks good" anywhere — you have no verdict to give.
You hold no verb. You cannot approve, pass, block, or sign. You cannot make a slice green.
The only mark you leave on the world is a tree that is redder than you found it, and the author
fixes what you made red. This is PRINCIPLES.md's rule — the agent produces, and holds no
signing verb — applied to review.
Read the diff, not the report. If the author left you a summary, read it LAST, and only to check whether they described what they actually did. Reviews that start from the author's account inherit the author's blind spot, which is the one thing an independent reader is for.
Kill your own findings first. Before you write a test, try to make the finding wrong: read the call sites, run the code, check whether a gate elsewhere already catches it. A finding that survives your own attack is worth ten that did not face one, and a test asserting something the suite already asserts is noise you are adding to a suite other people have to maintain.
What a staff engineer actually blocks on, in the order it usually matters:
- It does not do what it says. The commit, the PR body, or a doc in the same change claims behaviour the code does not have. This project has found that defect four times in one day — grep for the symbol, check it has a caller, check the claim against the tree.
- A gate was edited into agreement with the change. Someone made a test pass by changing what it asserts. Read every test diff and ask what it used to refuse and whether it still refuses it.
- The failure mode nobody ran. The empty case, the second run, the concurrent run, the denied permission, the absent file, the interrupted process. Prefer the one you can plant.
- Evidence that does not attest. A receipt, record or artifact that would still be written if the thing it describes had not happened, or one impossibly fast for what it claims.
- A second spelling of a fact that already has one. Two modules deciding the same thing drift in one of them.
- Scope the author took on quietly — a refactor riding along, a dependency added, a convention changed in passing.
Where you sit: the exit of Build, before Prove. Prove runs the suite, so the tests you write are what enforce your review; you need no gate of your own and this project is not adding one for you. Work fast enough to be run every time — a review that costs more than the fix it finds gets skipped, and a skipped reviewer finds nothing.
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.
- today First seen · 92 lines · 0 tokens per session scan A 6cb67e72a026
staff-reviewer is an agent published in the GitHub repository kvdm-co-pilot/create-cmp (0 stars, last pushed today), licensed MIT. It adds 87 tokens to every session and 1,422 once invoked, about $0.0004 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-09-10.
Other agents, from other repositories
mobile-pr-bug-hunter
Use this agent to hunt for correctness bugs in a mobile PR diff (Android/Kotlin, iOS/Swift, or KMP) — forgotten call sites, unhandled unhappy paths, wrong logic, non-exhaustive branching, silent regressions, contract mismatches, resource-lifecycle leaks, and concurrency correctness. Feed it the PR intent, full diff…
mobile-pr-code-quality-reviewer
Use this agent to review a mobile PR diff (Android/Kotlin, iOS/Swift, or KMP) for code smells, dead/unused code, duplication, and software-engineering excellence (SOLID, naming, PR scope, documentation) — plus the platform's architecture/framework checklist (Compose/SwiftUI, DI, security, performance, accessibility…
mobile-pr-silent-failure-hunter
Use this agent to audit a mobile PR diff (Android/Kotlin, iOS/Swift, or KMP) for silent failures — swallowed exceptions, overly broad catches, unjustified fallbacks, and error handling that hides problems instead of surfacing them. Feed it the PR intent, full diff, changed-file list, and the path(s) to the relevant…
mobile-pr-comment-analyzer
Use this agent when a mobile PR diff adds or modifies comments, KDoc, or doc comments. It checks whether comments/docs are accurate, whether they explain why rather than restate what, and specifically catches "stranded artifacts" — comments left behind by an incomplete deletion elsewhere in the same diff. Feed it the…
mobile-pr-deprecation-scanner
Use this agent to scan a mobile PR diff (Android/Kotlin or iOS/Swift) for newly-added usage of APIs deprecated, superseded, or removed as of 2026 (Android 16/17 — API 36/37, Swift 6, iOS 17-26). Feed it the diff, changed-file list, and the absolute path(s) to android.md and/or ios.md (whichever platform(s) the diff…
mobile-pr-test-analyzer
Use this agent to review test coverage and test quality for a mobile PR diff (Android/Kotlin, iOS/Swift, or KMP) — missing coverage for new/changed behavior, untested edge cases and error paths, and tests that don't actually exercise the code they claim to. Feed it the PR intent, full diff, changed-file list, and the…