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/ByamB4/find-cve-agentWrote 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/commands/byamb4/find-cve-agent/fp-check)<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>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.00032 | $0.01282 |
| Opus 5 | $0.00016 | $0.00641 |
| Sonnet 5 | $0.00006 | $0.00256 |
| Haiku 4.5 | $0.00003 | $0.00128 |
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.
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:
- Read the source code at the identified entry point
- Trace every function call from entry to sink
- Check for authentication requirements on the route/function
- 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?
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.
- 8d ago First seen · 173 lines · 32 tokens per session scan A 22f00aa11bbb
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.
Other commands, from other repositories
learn
Force claude-smart to extract learnings from this session now.
init
Install the formatters this repository needs, with every command visible before it runs.
brand-generate
Generate an on-brand document from a saved Brand Profile.
genshijin-compress
A command for safely shortening Markdown or text files into the genshijin style.
check-dev
Type-check a Z specification with fuzz.
adr-supersede
Create a new ADR that supersedes an existing one.