dashboard
FeaturedView all tracked vulnerabilities and their current status
AI & Automation 2,996 stars
363 forks Updated yesterday MIT
Install
Quality Score: 99/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Vulnetix Vulnerability Dashboard
This skill reads `.vulnetix/memory.yaml` and displays a comprehensive vulnerability status report. It is read-only and does not modify any files.
## Workflow
### Step 1: Load Memory
1. Use **Glob** to check if `.vulnetix/memory.yaml` exists in the repo root
2. If it does not exist, display: **"No vulnerability data found. Run `/vulnetix:vuln <package>` or `/vulnetix:exploits-search` to start tracking."** and stop.
3. Use **Read** to load the full contents of `.vulnetix/memory.yaml`
### Step 2: Parse and Categorize
From the `vulnerabilities:` section, categorize each entry:
**Open (unresolved):**
- `status: affected` -- "Vulnerable"
- `status: under_investigation` -- "Investigating"
**Resolved:**
- `status: fixed` -- "Fixed"
- `status: not_affected` -- "Not affected"
- Entries with `decision.choice: risk-accepted` -- "Risk accepted"
- Entries with `decision.choice: deferred` -- "Deferred"
From the `manifests:` section, collect manifest tracking info.
### Step 3: Display Summary Header
```
Vulnetix Security Dashboard
============================
Open: <N> (<X> vulnerable, <Y> investigating)
Resolved: <N> (<X> fixed, <Y> not affected, <Z> risk-accepted, <W> deferred)
Manifests tracked: <N> (last scan: <timestamp>)
```
If there are zero vulnerabilities and zero manifests, display: **"Clean slate -- no vulnerabilities tracked yet."**
### Step 4: Open Vulnerabilities Table
If there are open vulnerabilities, display them sorted by CWS...
Details
- Author
- davepoon
- Repository
- davepoon/buildwithclaude
- Created
- 10 months ago
- Last Updated
- yesterday
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
exploits
Analyze exploit intelligence for a vulnerability against the current repository
2,996 Updated yesterday
davepoon AI & Automation Featured
exploits-search
Search for exploits across all vulnerabilities with filtering by ecosystem, severity, source, and EPSS
2,996 Updated yesterday
davepoon AI & Automation Featured
vuln
Look up a vulnerability by ID or list all vulnerabilities for a package
2,996 Updated yesterday
davepoon AI & Automation Solid
vulnerability-scanner
Security vulnerability scanning for dependencies and code, with CVE database checking and risk assessment
1,160 Updated today
a5c-ai AI & Automation Featured
package-search
Search for packages and assess security risk before adding as dependencies
2,996 Updated yesterday
davepoon