Security Digest

Ranks CVEs and GitHub Advisories by real-world exploitation signals into actionable patch tiers.

Updated May 25, 2026
One-click install
npx skills add https://github.com/Cbowcrptex/CBOWCRYPTEX --skill security-digest-cbowcrptex
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: Security Digest
Source: https://github.com/Cbowcrptex/CBOWCRYPTEX/tree/main/skills/security-digest
Command: npx skills add https://github.com/Cbowcrptex/CBOWCRYPTEX --skill security-digest-cbowcrptex

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? CVSS scores measure theoretical severity, so digests sorted by score bury the vulnerabilities that are actually being exploited. This Skill inverts the ranking: it leads with confirmed exploitation from CISA KEV, enriches with EPSS exploitation probability, filters GitHub Advisories to your tracked stack, and outputs one concrete action per item. ## Core Features & Use Cases - Exploitation-first ranking: Pulls CISA KEV additions from the last 7 days and FIRST.org EPSS scores, then sorts items into PATCH TODAY, PATCH THIS WEEK, and MONITOR tiers. - Stack-aware filtering: Filters GitHub Advisory Database entries (last 48h, critical/high) to your tracked ecosystems (npm, pip, Go, crates.io, GitHub Actions), while KEV-listed CVEs always pass through. - Deduplication and logging: Skips CVE/GHSA IDs already reported in the last 2 days of memory logs, sends a formatted digest via ./notify, and logs tier counts and source status. - Use Case: A developer runs the digest each morning and gets a verdict line like "1 actively exploited, 2 likely soon" with exact upgrade commands such as "upgrade django to >=5.2.4" instead of a raw list of critical CVEs. ## Quick Start Run the security digest for my tracked ecosystems npm and pip and tell me what to patch today.

Frequently Asked Questions about Security Digest

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I prioritize which CVEs to patch first?▼

Prioritize by exploitation evidence rather than CVSS score: check CISA KEV for confirmed exploitation, then EPSS scores for 30-day exploitation probability. This digest automates that ranking into PATCH TODAY, PATCH THIS WEEK, and MONITOR tiers.

How to filter GitHub security advisories to my tech stack?▼

Pass a comma-separated list of ecosystems such as npm,pip,Go, and the digest keeps only advisories whose package ecosystem matches. Advisories whose CVE appears in CISA KEV always pass through regardless of ecosystem.

What is the difference between CISA KEV, EPSS, and CVSS?▼

CVSS measures theoretical severity, EPSS predicts 30-day exploitation probability, and CISA KEV lists vulnerabilities confirmed exploited in the wild. The digest combines all three, leading with KEV and EPSS while still showing CVSS on every line.

Does the GitHub Advisory API require authentication?▼

The GitHub Advisory API works unauthenticated at 60 requests per hour, but setting GITHUB_TOKEN raises the limit to 5000. The digest prefers the gh api command, which handles authentication internally, over raw curl with token headers.

Why does the security digest show no new items?▼

The digest deduplicates against CVE and GHSA IDs logged in the last 2 days of memory logs, so repeats are dropped. If all tiers are empty and sources succeeded, it logs SECURITY_DIGEST_OK and skips notification.