Audit CVE/vulnerability source coverage for a technology stack. Maps each component (container, library, base image, runtime) to authoritative CVE feeds, flags gaps, and produces audit-ready reports. Generic: works for any service or stack.
npx skills add https://github.com/notque/vexjoy-agent --skill cve-source-check
Audits CVE/vulnerability source coverage for a technology stack. Given an inventory
of components and (optionally) the feeds you currently monitor, it maps each
component to authoritative CVE sources, flags gaps, and emits audit-ready reports.
| In scope | Out of scope |
|---|---|
| Mapping components → authoritative feeds via a versioned registry | Running vulnerability scanners (Trivy/Snyk/etc.) |
| Reporting coverage and gaps in JSON + Markdown | Fetching CVE content or ranking by severity |
| Optional HEAD-check for source URL reachability | Integrating with private/commercial vuln databases |
| Audit-ready output (deterministic, reproducible) | Live LLM research per run |
| Flag | Purpose |
|---|---|
| --inventory <file> | JSON inventory: [{name, version?, type?}, ...] or {components: [...]}. |
| --inline "name@ver,name,..." | Quick comma-separated list. Mutually exclusive with --inventory. |
| --current-sources <file> | Optional. One URL per line. Blank lines and # comments skipped. |
| --service <name> | Free-form name used in report header and filenames. |
| --check-urls | HEAD-check every source URL (5s timeout, graceful degradation). |
| --registry <path> | Override default tech-source-registry.json. |
| --out-dir <path> | Output directory (default: cwd). |
JSON inventory format only. YAML is not supported — stdlib does not ship a YAML parser.
| File | Format |
|---|---|
| cve-source-report-{service}-{YYYYMMDD}.md | Human-readable audit report. |
| cve-source-report-{service}-{YYYYMMDD}.json | Machine-readable per references/output-formats.md. |
| Exit code | Meaning |
|---|---|
| 0 | Full coverage. |
| 1 | Gaps exist (unmapped components or unmonitored sources). |
| 2 | At least one source URL is unreachable (only with --check-urls). |
| 3 | Input error (missing/malformed registry or inventory). |
tech-source-registry.json next to this SKILL.md by default.--inventory: parse JSON; accept either a list or {components: [...]}.--inline: split on commas, parse name@version pairs.--current-sources is provided, read URLs (one per line); normalize forcase-insensitive comparison.
Gate: at least one inventory component is present. Empty inventory → exit 3.
name (and aliases) in the registry.mapped, attach the registry's source list.unmapped, sources [].monitored: true when itsnormalized URL appears in the set.
--check-urls is set, HEAD-check every unique source URL. Treat200/301/302/403/405 as reachable; record definite failures and network errors
distinctly. See references/source-verification.md.
Gate: every component has a status; every source has monitored and
reachable fields populated (reachable: null when checks are skipped).
gaps, unreachable.
gaps exist).
components exist).
Gate: both files exist on disk and the summary printed; exit code reflects
the audit result.
# Inline, offline, no monitoring data
python3 scripts/check-cve-sources.py \
--inline "[email protected],[email protected],postgres@16,redis@7,[email protected]" \
--service my-service
# Inventory file + current monitored feeds
python3 scripts/check-cve-sources.py \
--inventory examples/inventory.example.json \
--current-sources examples/current-sources.example.txt \
--service my-service
# Same, with link verification
python3 scripts/check-cve-sources.py \
--inventory examples/inventory.example.json \
--current-sources examples/current-sources.example.txt \
--service my-service \
--check-urls
To add a technology, edit tech-source-registry.json. Each entry needs name,
aliases, type, and 1–3 sources. Schema lives at
references/registry-schema.md.
| Signal | Load These Files | Why |
|---|---|---|
| adding a technology to the registry | registry-schema.md | Defines registry shape and allowed values. |
| checking source URLs | source-verification.md | Defines HEAD-check semantics and graceful degradation. |
| generating audit reports | output-formats.md | Defines JSON and Markdown report contracts. |
Cause: registry file missing or malformed JSON.
Solution: confirm tech-source-registry.json is at --registry (or default
location) and parses with python3 -m json.tool.
Cause: inventory file missing, malformed JSON, or unexpected shape.
Solution: validate with python3 -m json.tool. Inventory must be a list or an
object with a components key.
Cause: no usable components after parsing.
Solution: confirm each entry has a name. Inline form requires non-empty tokens.
Cause: --current-sources URLs do not match registry URLs exactly (e.g., extra
path segments, trailing slashes).
Solution: copy URLs directly from the registry. The script normalizes scheme/host
case and trailing slash; everything else must match.
--check-urls flags many [—] entriesCause: network issues (proxy, DNS, offline) — recorded as reachable: null.
Solution: re-run without --check-urls for the audit; investigate network
separately. Network errors do not affect the gap exit code.
Expert in secure backend coding practices specializing in input validation, authentication, and API security. Use PROACTIVELY for backend security implementations or security code reviews.
This skill should be used when the user asks to "perform cloud penetration testing", "assess Azure or AWS or GCP security", "enumerate cloud resources", "exploit cloud misconfigurations", "test O365 security", "extract secrets from cloud environments", or "audit cloud infrastructure". It provides comprehensive techniques for security assessment across major cloud platforms.
You are a dependency security expert specializing in vulnerability scanning, license compliance, and supply chain security. Analyze project dependencies for known vulnerabilities, licensing issues, outdated packages, and provide actionable remediation strategies.
Comprehensive Flow Nexus platform management - authentication, sandboxes, app deployment, payments, and challenges
This skill should be used when the user asks to "escalate privileges on Linux", "find privesc vectors on Linux systems", "exploit sudo misconfigurations", "abuse SUID binaries", "exploit cron jobs for root access", "enumerate Linux systems for privilege escalation", or "gain root access from low-privilege shell". It provides comprehensive techniques for identifying and exploiting privilege escalation paths on Linux systems.
Expert malware analyst specializing in defensive malware research, threat intelligence, and incident response. Masters sandbox analysis, behavioral analysis, and malware family identification. Handles static/dynamic analysis, unpacking, and IOC extraction. Use PROACTIVELY for malware triage, threat hunting, incident response, or security research.
This skill should be used when the user asks to "use Metasploit for penetration testing", "exploit vulnerabilities with msfconsole", "create payloads with msfvenom", "perform post-exploitation", "use auxiliary modules for scanning", or "develop custom exploits". It provides comprehensive guidance for leveraging the Metasploit Framework in security assessments.
Expert in secure mobile coding practices specializing in input validation, WebView security, and mobile-specific security patterns. Use PROACTIVELY for mobile security implementations or mobile security code reviews.
Take notque/cve-source-check from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.