CVE Awareness

SkillSecurity

CVE awareness — scan dependencies and code for vulnerabilities, audit docs for CVE leaks, plan responsible disclosure, block public leaks

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the CVE Awareness skill

What this skill tells your AI

The instructions your AI receives, as published by rossoctl/rossoctl in .claude/skills/cve/SKILL.md and read by ahel’s review.

Detect CVEs in project dependencies and source code, audit documentation for CVE leaks, and ensure responsible disclosure before any public communication.

IMPORTANT

Accidental public CVE disclosure enables exploitation before patches exist, violates responsible disclosure agreements, and causes legal and reputational harm. Never include CVE IDs, vulnerability descriptions, or exploit details in any public output (PRs, issues, comments, commit messages) until the CVE has been reported through proper channels.

Router

flowchart TD
    START(["/cve"]) --> WHAT{"What is needed?"}
    WHAT -->|"Scan / Check deps / Review"| SCAN["cve:scan"]:::cve
    WHAT -->|"CVE found, need plan"| BRAINSTORM["cve:brainstorm"]:::block
    WHAT -->|"No specific request"| SCAN

    classDef cve fill:#D32F2F,stroke:#333,color:white
    classDef block fill:#B71C1C,stroke:#333,color:white

When /cve is invoked, determine the entry point:

  • "Scan for CVEs" / "Check dependencies" / "Security review"cve:scan
  • CVE was found, need response plancve:brainstorm
  • No specific requestcve:scan (default: scan first)

What cve:scan Covers

PhaseScannerFocus
1Dependency inventoryAll manifests: pyproject.toml, package.json, go.mod, Dockerfiles, Helm charts
2Trivy (if available)Filesystem + container image scanning
3LLM + WebSearchKnown CVEs against NVD/Snyk/GitHub Advisories
4Code security reviewAuth, injection, secrets, containers, CI/CD, network patterns
5Documentation auditCVE references in .md files that could leak publicly
6Combined reportSUMMARY.md in .cves/ (gitignored)

When This Runs Automatically

These skills are invoked as mandatory gates in other workflows:

WorkflowGate LocationSkill
tdd:ciPhase 3.5 (after local checks, before push)cve:scan
tdd:hypershiftPre-deploy (before cluster deployment)cve:scan
tdd:kindPre-deploy (before cluster deployment)cve:scan
rca:*Phase 5 addendum (before documenting findings)cve:scan
git:commitPre-commit (scan for CVE IDs in message)CVE ID check
Finishing branchStep 2.5 (before PR creation options)cve:scan

Output Location

All scan results go to .cves/ (gitignored):

.cves/
├── SUMMARY.md                    # Combined report (copy to Google Docs)
├── cve-scan-results.md           # Dependency CVE findings
├── security-review-results.md    # Source code security findings
├── md-audit-results.md           # Documentation CVE leak audit
├── trivy-fs.json                 # Trivy output (if available)
└── trivy-config-*.txt            # Trivy Dockerfile scans

Related Skills

  • cve:scan — Full scanning (dependencies + code + docs)
  • cve:brainstorm — Disclosure planning and public output blocking

Signals

GitHub stars
300
Forks
107
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
cve
Source
github.com/rossoctl/rossoctl