fp-check

fp-check is a command for Claude Code from ByamB4/find-cve-agent. It costs 32 tokens per session (1,282 once invoked), scanned A, original, Apache-2.0.

A command that runs a six-step process to test whether a documented security finding is real. A proof of concept is a small script that demonstrates the claimed behavior.

In plain words
What is it for?
Use it from a target directory to restate a claim, check its evidence, test reachability, run the proof script, and continue the false-positive review.
Why use it?
It checks that the claim, code path, evidence, proof script, and vulnerability category all match, reducing false reports.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the find-cve-agent plugin — 21 skills, 7 commands, 5 agents shipped together

Good fit Use it from a target directory to restate a claim, check its evidence, test reachability, run the proof script, and continue the false-positive review.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/byamb4/find-cve-agent/fp-check
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/ByamB4/find-cve-agent

Made for: Claude Code.

Or install find-cve-agent, the plugin that ships this one along with the rest of its 21 skills, 7 commands, 5 agents.

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 fp-check

README.md
[![agentmods](https://agentmods.dev/badge/commands/byamb4/find-cve-agent/fp-check.svg)](https://agentmods.dev/commands/byamb4/find-cve-agent/fp-check)
Your own site
<a href="https://agentmods.dev/commands/byamb4/find-cve-agent/fp-check"><img src="https://agentmods.dev/badge/commands/byamb4/find-cve-agent/fp-check.svg" alt="Measured on agentmods" height="20"></a>
Per session 32 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,282 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.00032 $0.01282
Opus 5 $0.00016 $0.00641
Sonnet 5 $0.00006 $0.00256
Haiku 4.5 $0.00003 $0.00128

Measured 8d ago against content hash 22f00aa11bbb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

fp-check 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.

commands/fp-check.md · 173 lines

How it starts

The opening of the file, as written. The whole thing — 173 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/fp-check

Run the full false positive elimination process on the current finding.

Prerequisites

This command expects:

  • A finding documented in targets/<repo>/findings.md
  • A PoC script at targets/<repo>/poc_<vuln_type>.py
  • The target repo cloned at targets/<repo>/

Process

Step 0: Restate the Claim

Before any verification, restate the vulnerability claim in one precise sentence:

CLAIM: <package-name>@<version> has a <vulnerability-type> in <function/file>
       that allows <attacker with X privileges> to <achieve Y impact>
       by <sending Z input>.

If this sentence doesn't make coherent sense, STOP. The finding is likely false.

Gate 1: Process Completeness

Check that all required evidence exists:

  • File path and line number of the vulnerable code
  • Sink identified (the dangerous function call)
  • Source identified (where attacker input enters)
  • Data flow traced (source -> ... -> sink)
  • PoC script exists and has all required sections
  • CWE classification is correct

FAIL if: Any of the above is missing or the CWE doesn't match.

Gate 2: Reachability

Verify the attacker can actually reach the vulnerability:

  1. Read the source code at the identified entry point
  2. Trace every function call from entry to sink
  3. Check for authentication requirements on the route/function
  4. Verify the attacker controls the data that reaches the sink
# Trace the call chain
grep -n "<entry_function>" targets/<repo>/repo/src/**/*.js
grep -n "<intermediate_function>" targets/<repo>/repo/src/**/*.js
grep -n "<sink_function>" targets/<repo>/repo/src/**/*.js

FAIL if: There's no path from external input to the sink, or auth blocks it.

Gate 3: Real Impact

Determine if exploitation has genuine security consequences:

  • Is the result a security violation (confidentiality, integrity, availability)?
  • Or is it just an error/exception that the application handles gracefully?
  • Would a security team investigate if this happened in production?

Read the full file on GitHub · 173 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. 8d ago First seen · 173 lines · 32 tokens per session scan A 22f00aa11bbb

Subscribe to this mod's changes

fp-check is a command published in the GitHub repository ByamB4/find-cve-agent (48 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 32 tokens to every session and 1,282 once invoked, about $0.0002 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.