vuln-confidence-scorer

vuln-confidence-scorer is an agent for Claude Code from air-gapped/skills. It costs 34 tokens per session (494 once invoked), scanned A, original, MIT.

An independent reviewer for one possible security vulnerability found by a scan. It reads the cited code and scores how likely the finding is to withstand detailed triage, without deciding whether to remove it.

In plain words
What is it for?
Use it to review a single vulnerability finding, verify its cited locations and assess its confidence before a deeper security investigation.
Why use it?
It provides a second opinion and checks whether the reported source, destination and claimed data flow actually exist. This helps distinguish well-supported findings from descriptions based on incorrect or disconnected code references.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to review a single vulnerability finding, verify its cited locations and assess its confidence before a deeper security investigation.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/air-gapped/skills/vuln-confidence-scorer
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/air-gapped/skills

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 vuln-confidence-scorer

README.md
[![agentmods](https://agentmods.dev/badge/agents/air-gapped/skills/vuln-confidence-scorer/github.svg)](https://agentmods.dev/agents/air-gapped/skills/vuln-confidence-scorer)
Your own site
<a href="https://agentmods.dev/agents/air-gapped/skills/vuln-confidence-scorer"><img src="https://agentmods.dev/badge/agents/air-gapped/skills/vuln-confidence-scorer/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 vuln-confidence-scorer

Your own site · 80×15
<a href="https://agentmods.dev/agents/air-gapped/skills/vuln-confidence-scorer"><img src="https://agentmods.dev/badge/agents/air-gapped/skills/vuln-confidence-scorer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 494 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.00034 $0.00494
Opus 5 $0.00017 $0.00247
Sonnet 5 $0.00007 $0.00099
Haiku 4.5 $0.00003 $0.00049

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

Security

Grade A, and why

vuln-confidence-scorer 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 10d 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.

.claude/agents/vuln-confidence-scorer.md · 45 lines

What it actually says

You are giving ONE candidate security finding an independent confidence score. You are NOT deciding whether to keep it — every finding is kept. You are deciding how likely it is to survive rigorous triage. This is a shallow pass: re-read and score, not a full reachability trace.

Your spawn prompt supplies:

  • FINDING: — the full <finding> block under review, including its source_ref / sink_ref data-flow claim when the reviewer traced one
  • TARGET: — the scanned directory (you may Read/Grep inside it; do NOT execute anything, and stay inside it)

STEP 1 — Re-read the cited code. Open the finding's file around its line. Does the code actually do what the description claims?

STEP 1b — If the finding names a source_ref and a sink_ref, open both locations. They are its claimed data flow: input enters at the source, is used unsafely at the sink. A ref pointing at a line that does not exist, or two ends with no path between them, is the cheapest disconfirming evidence available here — score low and say which end failed. Two refs that do connect are confirming evidence. Both refs absent means the reviewer traced no flow: judge on the description as usual and do not treat the absence as disconfirming on its own.

STEP 2 — Check against common false-positive patterns (volumetric DoS, memory-safe language, test/fixture/doc file, framework auto-escape, env-var vector, missing-hardening-only, regex/log injection, outdated dep). A match lowers confidence sharply but does not auto-zero it.

STEP 3 — Score 1-10 that this is a real, actionable vulnerability: 1-3 likely false positive or noise 4-5 plausible but speculative 6-7 credible, needs investigation 8-10 high confidence, clear pattern

OUTPUT (exactly this, nothing else): CONFIDENCE: <1-10> REASON:

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. 10d ago First seen · 45 lines · 34 tokens per session scan A 9dbf8717ed9a

Subscribe to this mod's changes

vuln-confidence-scorer is an agent published in the GitHub repository air-gapped/skills (5 stars, last pushed 8d ago), licensed MIT. It adds 34 tokens to every session and 494 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-31.

Related

Other agents, from other repositories

unity-reviewer

Unity-specific code reviewer focusing on MonoBehaviour patterns, serialization, performance, and Unity best practices. Use after implementing Unity code to catch Unity-specific issues.

DmitriyYukhanov/claude-plugins · 34 tokens

python-reviewer

Python-specific code reviewer focusing on type safety, PEP 8 compliance, and Python best practices. Use after implementing Python code to catch Python-specific issues.

DmitriyYukhanov/claude-plugins · 35 tokens

typescript-reviewer

TypeScript-specific code reviewer focusing on type safety, async patterns, and frontend best practices. Use after implementing TypeScript code to catch TypeScript-specific issues.

DmitriyYukhanov/claude-plugins · 35 tokens

unity-simplifier

Simplifies Unity C# code for clarity and maintainability while preserving functionality. Focuses on Unity-specific patterns and conventions.

DmitriyYukhanov/claude-plugins · 29 tokens

visual-fixer-page

Fixes visual issues on ONE page of a built website — starts its own dev server on an assigned port, inspects every section and element using Playwright DOM inspection, compares against the design document, and fixes all issues directly in the source files for that page only. Multiple instances run in parallel, each…

lukaskellerstein/claude-my-marketplace · 170 tokens

sync-spec-kit-agent

Analyzes implementation changes on a feature branch and updates the spec-kit specification folder (.specify/specs/ /) to reflect the current state — new requirements, architecture changes, completed tasks, research findings, and any drift from the original specification. Context: User finished implementing something…

lukaskellerstein/claude-my-marketplace · 229 tokens