Source profileQuality 86/100Review permissions

notque/vexjoy-agent/skills/infrastructure/cve-source-check/SKILL.md

cve-source-check

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.

Source repository stars
413
Declared platforms
0
Static risk flags
1
Last source update
2026-07-25
Source checked
2026-08-04

Decision brief

What it does—and where it fits

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.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/notque/vexjoy-agent --skill "skills/infrastructure/cve-source-check"
    Safe inspection promptEditorial

    Inspect the Agent Skill "cve-source-check" from https://github.com/notque/vexjoy-agent/blob/b19dacd072f5befd29b525b25dbecc7a1cd86d92/skills/infrastructure/cve-source-check/SKILL.md at commit b19dacd072f5befd29b525b25dbecc7a1cd86d92. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Workflow

      1. Locate the registry: tech-source-registry.json next to this SKILL.md by default. 2. Build an inventory: - From --inventory: parse JSON; accept either a list or {components: [...]}. - From --inline: split on commas, parse name@version pairs. 3. If --current-sources is provided…

      Locate the registry: tech-source-registry.json next to this SKILL.md by default.Build an inventory:From --inventory: parse JSON; accept either a list or {components: [...]}.
    2. 02

      Phase 1: LOAD

      1. Locate the registry: tech-source-registry.json next to this SKILL.md by default. 2. Build an inventory: - From --inventory: parse JSON; accept either a list or {components: [...]}. - From --inline: split on commas, parse name@version pairs. 3. If --current-sources is provided…

      Locate the registry: tech-source-registry.json next to this SKILL.md by default.Build an inventory:From --inventory: parse JSON; accept either a list or {components: [...]}.
    3. 03

      Phase 2: MAP & VERIFY

      1. For each component, look up name (and aliases) in the registry. - Found → status mapped, attach the registry's source list. - Missing → status unmapped, sources []. 2. If current sources were loaded, mark each source monitored: true when its normalized URL appears in the set.…

      For each component, look up name (and aliases) in the registry.Found → status mapped, attach the registry's source list.Missing → status unmapped, sources [].
    4. 04

      Phase 3: REPORT

      1. Compute the summary: components, mapped/unmapped, monitored, coverage %, gaps, unreachable. 2. Write the JSON report. 3. Write the Markdown report: - Summary table. - Components table with ✅ / ⚠️ / ❌ markers. - Gaps section listing primary then secondary sources to add (only…

      Compute the summary: components, mapped/unmapped, monitored, coverage %,Write the JSON report.Write the Markdown report:
    5. 05

      Quick start

      Review the “Quick start” section in the pinned source before continuing.

      Review and apply the “Quick start” source section.

    Permission review

    Static risk signals and limitations

    Runs scripts

    medium · line 94

    The documentation asks the agent to run terminal commands or scripts.

    python3 scripts/check-cve-sources.py \

    Runs scripts

    medium · line 99

    The documentation asks the agent to run terminal commands or scripts.

    python3 scripts/check-cve-sources.py \

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score86/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars413SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    notque/vexjoy-agent
    Skill path
    skills/infrastructure/cve-source-check/SKILL.md
    Commit
    b19dacd072f5befd29b525b25dbecc7a1cd86d92
    License
    MIT
    Collected
    2026-08-04
    Default branch
    main
    View the original SKILL.md

    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.

    Scope

    In scopeOut of scope
    Mapping components → authoritative feeds via a versioned registryRunning vulnerability scanners (Trivy/Snyk/etc.)
    Reporting coverage and gaps in JSON + MarkdownFetching CVE content or ranking by severity
    Optional HEAD-check for source URL reachabilityIntegrating with private/commercial vuln databases
    Audit-ready output (deterministic, reproducible)Live LLM research per run

    Inputs

    FlagPurpose
    --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-urlsHEAD-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.

    Outputs

    FileFormat
    cve-source-report-{service}-{YYYYMMDD}.mdHuman-readable audit report.
    cve-source-report-{service}-{YYYYMMDD}.jsonMachine-readable per references/output-formats.md.
    Exit codeMeaning
    0Full coverage.
    1Gaps exist (unmapped components or unmonitored sources).
    2At least one source URL is unreachable (only with --check-urls).
    3Input error (missing/malformed registry or inventory).

    Workflow

    Phase 1: LOAD

    1. Locate the registry: tech-source-registry.json next to this SKILL.md by default.
    2. Build an inventory:
      • From --inventory: parse JSON; accept either a list or {components: [...]}.
      • From --inline: split on commas, parse name@version pairs.
    3. If --current-sources is provided, read URLs (one per line); normalize for case-insensitive comparison.

    Gate: at least one inventory component is present. Empty inventory → exit 3.

    Phase 2: MAP & VERIFY

    1. For each component, look up name (and aliases) in the registry.
      • Found → status mapped, attach the registry's source list.
      • Missing → status unmapped, sources [].
    2. If current sources were loaded, mark each source monitored: true when its normalized URL appears in the set.
    3. If --check-urls is set, HEAD-check every unique source URL. Treat 200/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).

    Phase 3: REPORT

    1. Compute the summary: components, mapped/unmapped, monitored, coverage %, gaps, unreachable.
    2. Write the JSON report.
    3. Write the Markdown report:
      • Summary table.
      • Components table with ✅ / ⚠️ / ❌ markers.
      • Gaps section listing primary then secondary sources to add (only when gaps exist).
      • Unmapped section listing registry-extension TODOs (only when unmapped components exist).
    4. Print a one-screen summary to stdout including report paths.
    5. Set the exit code per the table above.

    Gate: both files exist on disk and the summary printed; exit code reflects the audit result.

    Quick start

    # 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
    

    Extending the registry

    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.

    Reference Loading Table

    SignalLoad These FilesWhy
    adding a technology to the registryregistry-schema.mdDefines registry shape and allowed values.
    checking source URLssource-verification.mdDefines HEAD-check semantics and graceful degradation.
    generating audit reportsoutput-formats.mdDefines JSON and Markdown report contracts.

    Error handling

    "ERROR: failed to load registry"

    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.

    "ERROR: failed to load inventory"

    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.

    "ERROR: inventory is empty"

    Cause: no usable components after parsing. Solution: confirm each entry has a name. Inline form requires non-empty tokens.

    Coverage stuck at 0%

    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 [—] entries

    Cause: 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.

    Alternatives

    Compare before choosing

    Computed 10023,781

    alirezarezvani/claude-skills

    app-store-optimization

    App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

    Computed 10014,225

    wanshuiyin/Auto-claude-code-research-in-sleep

    citation-audit

    Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.

    Computed 9832,606

    K-Dense-AI/scientific-agent-skills

    dask

    Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.

    Computed 9832,606

    K-Dense-AI/scientific-agent-skills

    neurokit2

    Use NeuroKit2 to build or audit reproducible research workflows for physiological time-series preprocessing, event/interval analysis, multimodal alignment, variability, and complexity. Trigger when code imports neurokit2 or needs its current APIs, schemas, and method-aware validation—not for diagnosis or device validation.