Judge False-Positive Review

Judge False-Positive Review is an agent for Claude Code from KevinRabun/judges. It costs 60 tokens per session (1,390 once invoked), scanned A, original, MIT.

A final review step that checks whether automated code-review findings are real problems or false alarms.

In plain words
What is it for?
Rechecking findings from other code judges, especially possible matches inside string literals, comments, documentation, test scaffolding, infrastructure templates, and similarly named identifiers.
Why use it?
Pattern-based checks can flag harmless text in strings, comments, tests, templates, or identifiers. This filters those cases so developers can focus on findings that actually matter.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit Rechecking findings from other code judges, especially possible matches inside string literals, comments, documentation, test scaffolding, infrastructure templates, and similarly named identifiers.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/kevinrabun/judges/false-positive-review.judge
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/KevinRabun/judges

Made for: Claude Code.

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 Judge False-Positive Review

README.md
[![agentmods](https://agentmods.dev/badge/agents/kevinrabun/judges/false-positive-review.judge/github.svg)](https://agentmods.dev/agents/kevinrabun/judges/false-positive-review.judge)
Your own site
<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.

agentmods 80×15 button for Judge False-Positive Review

Your own site · 80×15
<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>
Per session 60 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,390 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.00060 $0.01390
Opus 5 $0.00030 $0.00695
Sonnet 5 $0.00012 $0.00278
Haiku 4.5 $0.00006 $0.00139

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

Security

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.

agents/false-positive-review.judge.md · 86 lines

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:

  1. 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.
  2. 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.
  3. 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.
  4. 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.
  5. 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.
  6. 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, Go os.Exit() flagged as process termination vulnerability.
    • Verdict: FALSE POSITIVE if the usage follows documented safe patterns.
  7. 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.
  8. 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.
  9. 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.
  10. 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.

Read the full file on GitHub · 86 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. 11d ago First seen · 86 lines · 60 tokens per session scan A 418dfebdf684

Subscribe to this mod's changes

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.