package-search
FeaturedSearch for packages and assess security risk before adding as dependencies
AI & Automation 2,987 stars
362 forks Updated 4 days ago MIT
Install
Quality Score: 99/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Vulnetix Package Search Skill
This skill searches for packages across ecosystems and provides a comprehensive security risk assessment before adding them as dependencies.
## Output & Analysis Guidelines
**Primary output format:** Markdown. All reports, tables, summaries, and diffs MUST be presented as formatted markdown text directly — never generate scripts or programs to produce output that can be expressed as markdown.
**Visual data — use Mermaid diagrams** to display data visually when it aids comprehension. Mermaid renders natively in markdown and requires no external tools. Use it for:
- Dependency trees / upgrade paths → `graph TD` or `graph LR`
- Version comparison timelines → `timeline`
- Risk breakdowns → `pie` or `quadrantChart`
- Decision flow (add/skip/alternatives) → `flowchart`
Example — vulnerability distribution for a package:
````markdown
```mermaid
pie title Vulnerability Severity
"Critical" : 1
"High" : 2
"Medium" : 5
"Low" : 3
```
````
**If `uv` is available**, richer visualizations can be generated with Python (matplotlib, plotly) and saved to `.vulnetix/`:
```bash
command -v uv &>/dev/null && uv run --with matplotlib python3 -c '
import matplotlib.pyplot as plt
# ... generate chart ...
plt.savefig(".vulnetix/chart.png", dpi=150, bbox_inches="tight")
'
```
When Python charts are generated, display them inline and keep the Mermaid version as a text fallback.
**Data processing — tooling cascade (strict order):**
1. **jq / yq + bas...
Details
- Author
- davepoon
- Repository
- davepoon/buildwithclaude
- Created
- 10 months ago
- Last Updated
- 4 days ago
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
vuln
Look up a vulnerability by ID or list all vulnerabilities for a package
2,987 Updated 4 days ago
davepoon AI & Automation Featured
exploits
Analyze exploit intelligence for a vulnerability against the current repository
2,987 Updated 4 days ago
davepoon AI & Automation Featured
fix
Get fix intelligence for a vulnerability and propose concrete remediation for the current repository
2,987 Updated 4 days ago
davepoon AI & Automation Solid
vulnerability-scanner
Security vulnerability scanning for dependencies and code, with CVE database checking and risk assessment
1,034 Updated today
a5c-ai AI & Automation Featured
exploits-search
Search for exploits across all vulnerabilities with filtering by ecosystem, severity, source, and EPSS
2,987 Updated 4 days ago
davepoon