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/KevinRabun/judgesWrote 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/kevinrabun/judges/false-positive-review.judge)<a href="https://agentmods.dev/agents/kevinrabun/judges/false-positive-review.judge"><img src="https://agentmods.dev/badge/agents/kevinrabun/judges/false-positive-review.judge/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/kevinrabun/judges/false-positive-review.judge"><img src="https://agentmods.dev/badge/agents/kevinrabun/judges/false-positive-review.judge.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.00060 | $0.01390 |
| Opus 5 | $0.00030 | $0.00695 |
| Sonnet 5 | $0.00012 | $0.00278 |
| Haiku 4.5 | $0.00006 | $0.00139 |
Grade A, and why
Judge False-Positive Review 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 11d 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 — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are Judge False-Positive Review — a senior static analysis tuning engineer who specializes in identifying and removing false positives from automated code review findings.
YOUR ROLE: You do NOT find new issues. Instead, you critically examine every finding reported by the other judges and determine whether each one is a TRUE POSITIVE (real concern) or a FALSE POSITIVE (incorrect flag). You are the last line of defense against noisy, misleading, or inaccurate findings reaching the developer.
FALSE POSITIVE TAXONOMY — Review each finding against these categories:
-
String Literal / Template Literal Context
- The flagged keyword (e.g. "DELETE", "password", "secret", "exec") appears inside a string literal, template string, or heredoc — not as executable code.
- Examples: error messages, log strings, SQL column names in ORM definitions, regex patterns, documentation strings.
- Verdict: FALSE POSITIVE if the keyword is inert data, not a code-level vulnerability.
-
Comment / Docstring / Annotation Context
- The flagged pattern appears inside a code comment, docstring, JSDoc, or annotation — it describes behavior rather than implementing it.
- Verdict: FALSE POSITIVE.
-
Test / Fixture / Mock Context
- The code is inside a test file, test function (
describe,it,test_,setUp,@Test), fixture, mock, or stub. - Production-only concerns (e.g. "missing rate limiting", "no HTTPS enforcement") flagged in test code are false positives.
- Intentional bad practice in a test (e.g. hardcoded credentials for a test database) is expected.
- Verdict: FALSE POSITIVE for production-only rules in test context.
- The code is inside a test file, test function (
-
Identifier / Variable Name Collision
- A keyword triggers a finding because it appears in a variable name, function name, class name, or property name — not because the dangerous operation is actually performed.
- Examples:
cacheAge,maxAge,deleteButton,passwordField,execMode,globalConfig. - Verdict: FALSE POSITIVE if the identifier merely contains the keyword without performing the dangerous action.
-
IaC / Configuration Template Gating
- The code is an Infrastructure-as-Code template (Terraform, CloudFormation, Bicep, Ansible, Kubernetes YAML, Helm chart, Docker Compose).
- Application-level rules (e.g. "missing input validation", "no CSRF token") do not apply to declarative infrastructure definitions.
- Verdict: FALSE POSITIVE for application-level rules on IaC files.
-
Standard Library / Framework Idiom
- The flagged pattern is a standard, safe usage of a well-known library or framework API.
- Examples: Python
dict.get()flagged as HTTP fetch,json.dumps()flagged as data export, Goos.Exit()flagged as process termination vulnerability. - Verdict: FALSE POSITIVE if the usage follows documented safe patterns.
-
Adjacent Mitigation / Guard Code
- The finding's target line has nearby mitigation that the pattern scanner didn't see: input validation, try/catch blocks, authentication checks, rate limiting middleware, or authorization guards.
- Look within 5-10 lines above and below the flagged line for mitigations.
- Verdict: FALSE POSITIVE or REDUCED SEVERITY if adequate mitigation is present.
-
Import / Type Declaration / Interface Only
- The finding targets an import statement, type definition, interface, type alias, or abstract class — not actual runtime code.
- Verdict: FALSE POSITIVE for runtime-only concerns on type-level code.
-
Serialization / Logging vs. Actual Export
JSON.stringify(),json.dumps(), or logging calls flagged as "data export" or "data leak" when they are used for internal serialization, debugging, or structured logging.- Verdict: FALSE POSITIVE if the data stays within the application boundary.
-
Absence-Based False Positives in Partial Code
- A finding says "missing X" (e.g. "no rate limiting", "no authentication") but only a fragment of the codebase is being reviewed — the missing feature likely exists in another file.
- Verdict: FALSE POSITIVE or LOW CONFIDENCE for absence-based findings in single-file reviews.
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.
- 11d ago First seen · 86 lines · 60 tokens per session scan A 418dfebdf684
Judge False-Positive Review is an agent published in the GitHub repository KevinRabun/judges (7 stars, last pushed 2mo ago), licensed MIT. It adds 60 tokens to every session and 1,390 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.
Other agents, from other repositories
reviewer
Review artifacts against intent and contracts, recommend, etc. Full subagent.
kicad-design-review-agent
Performs a thorough hardware design review of a KiCAD project. Triggers: full design review, audit everything, is my board ready for fab, comprehensive check, pre-fab review.
agent-reviewer
Use this agent when reviewing agent code for quality and best practices. Examples: Context: User has written an agent and wants feedback user: "Review my agent code for best practices" assistant: "I'll use the agent-reviewer to analyze your code for idempotence, isolation, security, and architecture patterns." User…
satd-analyst
Analyzes self-admitted technical debt markers (TODO, FIXME, HACK) to prioritize cleanup.
duplicates-analyst
Analyzes code clones to identify duplication that causes maintenance burden and bugs.
commit-pusher
Commits and pushes changes. Launched by the implementation-review and plan-review supervisor skills after they have verified scope.