Automate technology stack vulnerability tracking with NVD/NIST integration, EPSS exploit scoring, and CISA KEV tracking for daily prioritized remediation.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install cve-tracker
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install cve-tracker using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
CVE Tracker is a continuous, automated security intelligence agent designed to actively monitor technology stacks for newly disclosed security vulnerabilities. As one of the security-focused Openclaw Skills, this agent helps development and operations teams identify system threats before they can be exploited by attackers. It works by checking your custom software inventory against the NVD/NIST database and enriching findings through a local CVE-MCP endpoint.
Rather than overwhelming administrators with noisy alerts, the skill translates raw CVE disclosures into high-priority remediation plans. It leverages advanced scoring metrics, including the CISA Known Exploited Vulnerabilities (KEV) catalog and Exploit Prediction Scoring System (EPSS) percentages, to prioritize patches that represent active, real-world threats to your specific environment.
Ensure that your target host has curl and jq installed, security stack inventory file access, and a running CVE-MCP endpoint.
Save your system inventory to a JSON file monitored by the agent:
cat > /tmp/tech-stack.json << 'EOF'
{
"stack_name": "production-infrastructure",
"last_updated": "2026-07-04",
"products": [
{"name": "nginx", "version": "1.24.0", "category": "web-server"},
{"name": "postgresql", "version": "15.3", "category": "database"},
{"name": "redis", "version": "7.0.11", "category": "cache"}
],
"watchlist": [
"nginx", "postgresql"
],
"ignore_cve": []
}
EOF
Scan the defined inventory against CVE-MCP and print prioritized metrics:
curl -s -X POST "http://localhost:8765/cve-mcp/search" \
-H "Content-Type: application/json" \
-d '{"product": "nginx", "version": "1.24.0"}' | jq '.'
Configure the automated daily script to generate Markdown digests of new threats within your Cron configuration:
DAILY_DIGEST_SCRIPT="$HOME/App/domains/argus/clawhub-skills/cve-tracker/daily-digest.sh"
chmod +x "$DAILY_DIGEST_SCRIPT"
| Attribute | Type | Description |
|---|---|---|
stack_name |
String | A descriptive label for the target infrastructure. |
products |
Array of Objects | Specific components containing name, version, and category. |
watchlist |
Array of Strings | Critical products requiring high-priority tracking. |
ignore_cve |
Array of Strings | Specific CVE IDs excluded from alerts. |
ALERT_THRESHOLD_CVSS.Loading
A secure, Ed25519-signed claim verification tool that resolves facts against live external state like GitHub, blockchains, and financial markets.

Deploy files, static sites, and containerized server-side apps to live URLs straight from your AI coding agent, powered by secure Drives for persistent memory.

A local, LLM-powered second brain and wiki that combines Obsidian markdown vaults with Ollama inference, semantic search, and multi-model consensus.

A playbook-driven incident response framework providing structured security workflows, evidence collection, and BlackArch forensic tool integration.

A secure, watch-only Bitcoin self-custody tracker designed to monitor COLDCARD Q vault health, mempool fees, UTXOs, and on-chain metrics.

A secure, read-only monitoring skill designed to track ZK-Bankir sovereign banking treasuries, verify SHA-256 hash-chains, and audit multi-asset balances.








































