repo-cve-exploitability

repo-cve-exploitability is a skill for Claude Code from mappedsky/seizu. It costs 46 tokens per session (2,785 once invoked), scanned A, original, Apache-2.0.

A security review workflow for checking whether CVEs, publicly recorded software vulnerabilities, can actually be reached in a GitHub repository’s code.

In plain words
What is it for?
Finding repository CVEs, reading dependency files and source code, and judging whether each vulnerability is reachable in that codebase.
Why use it?
A vulnerable dependency may be installed without the affected code path being used, so a dependency list alone cannot show the real risk.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/user/seizu_results/.

Good fit Finding repository CVEs, reading dependency files and source code, and judging whether each vulnerability is reachable in that codebase.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

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 repo-cve-exploitability

README.md
[![agentmods](https://agentmods.dev/badge/skills/mappedsky/seizu/repo-cve-exploitability/github.svg)](https://agentmods.dev/skills/mappedsky/seizu/repo-cve-exploitability)
Your own site
<a href="https://agentmods.dev/skills/mappedsky/seizu/repo-cve-exploitability"><img src="https://agentmods.dev/badge/skills/mappedsky/seizu/repo-cve-exploitability/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 repo-cve-exploitability

Your own site · 80×15
<a href="https://agentmods.dev/skills/mappedsky/seizu/repo-cve-exploitability"><img src="https://agentmods.dev/badge/skills/mappedsky/seizu/repo-cve-exploitability.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,785 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00046 $0.02785
Opus 5 $0.00023 $0.01392
Sonnet 5 $0.00009 $0.00557
Haiku 4.5 $0.00005 $0.00279

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

Security

Grade A, and why

repo-cve-exploitability scanned grade A with 1 finding 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 9d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- The sub-agent reaches GitHub **through those tools, not through the network** — the sandbox has no outbound internet access, so `curl`/`urllib` against `api.github.com` or `raw.githubusercontent.com` will always fail.
.config/dev/seizu/plugins/github-security-investigations/skills/repo-cve-exploitability/SKILL.md · 76 lines

How it starts

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

Assess whether the CVEs recorded against repo are exploitable in this repository's own code, not just present in its dependency graph. Combine Seizu's graph data (what was found) with the repository source read through the external GitHub MCP tools (whether it matters).

Inputs — the values arrive in the ## Inputs block below these instructions:

  • repo — the repository fullname, owner/name.
  • cve_ids — comma-separated; when empty, assess the highest-severity open findings.
  • max_cves — how many findings to assess when cve_ids is empty.
  • severity — the severity filter to pass through to the graph.
  • ref — branch, tag, or commit SHA to inspect; empty means the default branch.

Tool arguments — use exactly these field names:

  • github_security__repo_risk_summary: org, repos, exclude_forks, include_archived
  • github_security__repo_dependencies: repos, packages, manifest, org, limit
  • github_security__sync_freshness: org
  • github_security__top_vulnerabilities: org, repos, state, severity, limit, exclude_forks, include_archived
  • cve_analysis__get_cve: cve_id
  • ext__github__get_file_contents: owner, repo, path, ref (path / lists the repository root; a path ending in / lists that directory)
  • ext__github__search_code: query (GitHub code-search syntax, e.g. repo:owner/name path:*.py "import yaml"), perPage
  • ext__github__list_commits: owner, repo, sha, path, perPage
  • ext__github__get_commit: owner, repo, sha
  • ext__github__list_branches: owner, repo
  • ext__github__list_tags: owner, repo
  • ext__github__get_latest_release: owner, repo The graph is the authority on which repository this is. repo may be a bare name, or carry an owner the requester assumed — never take the owner from your own knowledge of the project, because a well-known upstream org (lyft/…, netflix/…) is usually not the org that was actually scanned. Resolve it in step 1 and use the fullname the graph returns for every later call, splitting that on / into owner and repo for the ext__github__* calls.

Stage 1 — establish the findings:

  1. Resolve the repository first. Call github_security__repo_risk_summary with org="" (empty matches every organization in the graph) and repos= the bare repository name — the part of repo after / if it has one. Take the repo fullname from the row it returns and use it from here on; say so plainly if its owner differs from what the request implied. If it returns no row, the graph holds no such repository: report that, name the closest repositories you can see, and stop. Do not go looking for the project on the internet, and do not delegate to a sandbox to fetch it — the graph and the GitHub MCP tools are the only sources for this assessment.
  2. Call github_security__sync_freshness with the resolved org. State the newest sync timestamp and warn that the finding list may be stale or incomplete if it is old.
  3. Call github_security__top_vulnerabilities with the resolved org, repos= the resolved fullname, state='open', severity= the severity input, include_archived=true, exclude_forks=false, and limit=100. repos filters in the query, before ranking and the limit, so every row that comes back is already this repository's — never re-run it org-wide and filter the rows yourself, and never call it more than once with the same arguments. An empty result here means the graph records no matching findings for this repository.
  4. If cve_ids is non-empty, restrict the working set to those CVE/GHSA identifiers and say so when one of them has no matching row in the graph. Otherwise take the top max_cves rows by severity, then EPSS, then CVSS.
  5. Do not call cve_analysis__get_cve for each finding. github_security__top_vulnerabilities already returns severity, CVSS, EPSS, the advisory summary, the CVE and GHSA ids, the patched version and the vulnerable range — everything the assessment needs. Call cve_analysis__get_cve only for a CVE whose advisory came back empty, and at most three times in a run: in this graph its description is usually null, so a per-CVE sweep costs a call each and returns what you already had.
  6. If no findings remain, stop and report that — do not go looking for vulnerabilities in the code that the graph did not report.

Read the full file on GitHub · 76 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. 9d ago First seen · 76 lines · 46 tokens per session scan A 7c0bc70a425a

Subscribe to this mod's changes

repo-cve-exploitability is a skill published in the GitHub repository mappedsky/seizu (5 stars, last pushed today), licensed Apache-2.0. It adds 46 tokens to every session and 2,785 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

tutti-agent-workspace-app

Build or evolve a complex agent-enabled Tutti workspace app repository. Use for Tutti apps with web/server/shared monorepos, @tutti-os/agent-acp-kit local agent runtimes, kit-owned TUTTICLI agent/composer discovery, dynamic agent catalogs, run-scoped MCP tool gateways, app-owned package builders, web-first debugging…

tutti-os/tutti · 106 tokens

assimilate-popular-workflows

This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research external skills", "find workflow patterns", "survey the skill landscape", "what skills exist out there", or wants to investigate public repositories for extractable…

a5c-ai/babysitter · 110 tokens

process-builder

Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to implementation.

a5c-ai/babysitter · 32 tokens

mcp-app-verification

Comprehensive verification checklists for MCP Apps. Tests with basic-host reference, validates handler-before-connect, text fallback, resource URI linking, single-file bundling, host styling, CSP, and legacy pattern detection.

a5c-ai/babysitter · 48 tokens

mcp-host-styling-integration

Integrates MCP App UI with host theming system. Applies host CSS variables, handles onhostcontextchanged, safe area insets, display mode detection, and fullscreen configuration.

a5c-ai/babysitter · 44 tokens

verification-suite

Plan structure validation, phase completeness checks, reference integrity verification, and artifact existence confirmation. Provides the structured verification layer ensuring GSD artifacts are well-formed and complete.

a5c-ai/babysitter · 36 tokens