package-search

Featured

Search for packages and assess security risk before adding as dependencies

AI & Automation 2,987 stars 362 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

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