Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add allsmog/vuln-scout/plugin install vuln-scoutWrote 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/allsmog/vuln-scout/verify)<a href="https://agentmods.dev/commands/allsmog/vuln-scout/verify"><img src="https://agentmods.dev/badge/commands/allsmog/vuln-scout/verify.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.00019 | $0.01572 |
| Opus 5 | $0.00010 | $0.00786 |
| Sonnet 5 | $0.00004 | $0.00314 |
| Haiku 4.5 | $0.00002 | $0.00157 |
Grade A, and why
verify 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 7d 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 — 211 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Verification Workflow
Verify whether a reported item is a real vulnerability, a false positive, or still unresolved.
Philosophy
Pattern matches and sink heuristics produce leads. Verification decides whether those leads stay hotspot, become finding, or close as false_positive.
Modes
Single target
/vuln-scout:verify routes/login.ts:34 --type sql-injection
Batch verify critical findings
/vuln-scout:verify --all-critical
Verify from prior results
/vuln-scout:verify --from .claude/findings.json
Language support
First-party Joern verification is implemented for:
- JavaScript / TypeScript
- Python
- Go
- Java
- PHP
- Ruby
- C# when the local Joern frontend is available
Solidity verification is Slither-owned. Joern should return verdict: na_cpg
for Solidity findings instead of trying to build a Solidity CPG.
If the target language is not supported for the requested verifier:
- return
verdict: na_cpg - do not convert that into
false_positive
Step 1: Load or create the CPG cache
Cache CPGs by target hash plus language so repeated verification does not restart from scratch.
TARGET_HASH=$(git ls-files -z . | xargs -0 shasum | shasum | awk '{print $1}')
LANGUAGE=<detected-language>
CPG_FILE=".joern/${TARGET_HASH}-${LANGUAGE}.cpg"
if [ ! -f "$CPG_FILE" ] || [ "$NO_CACHE" = "true" ]; then
mkdir -p .joern
joern-parse . --output "$CPG_FILE"
fi
Step 2: Choose verifier
| Type | Script |
|---|---|
sql-injection |
verify-sqli.sc |
command-injection |
verify-cmdi.sc |
xss |
verify-xss.sc |
path-traversal |
verify-path.sc |
ssrf |
verify-ssrf.sc |
| other / mixed | verify-generic.sc |
Step 3: Run Joern
Single verification:
joern --script "${CLAUDE_PLUGIN_ROOT}/scripts/joern/verify-${VULN_TYPE}.sc" \
--params cpgFile="$CPG_FILE",file="$FILE",line="$LINE"
Batch verification:
joern --script "${CLAUDE_PLUGIN_ROOT}/scripts/joern/batch-verify.sc" \
--params cpgFile="$CPG_FILE",findingsFile=".claude/findings.json"
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.
- 7d ago First seen · 211 lines · 19 tokens per session scan A c87481264171
verify is a command published in the GitHub repository allsmog/vuln-scout (24 stars, last pushed 2mo ago), licensed MIT. It adds 19 tokens to every session and 1,572 once invoked, about $0.0001 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
linkerd
Linkerd-specific diagnostics — mTLS verification, proxy injection issues, authorization policy debugging, traffic management, and multi-cluster connectivity problems.
debug
Systematic debugging with hypotheses and evidence gathering.
data-flow-analysis
Trace how data flows through the system from input to output.
duck-off
Turn off Rubber Duck mode and answer normally.
bug
Reproduce then TDD-fix a ready-for-agent bug ticket in this checkout. Web bugs get a browser repro first.
doctor
Check the Modellix CLI install, credential resolution, API connectivity, and balance.