fix

Featured

Get fix intelligence for a vulnerability and propose concrete remediation for the current repository

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 Fix Intelligence Skill This skill fetches fix intelligence for a vulnerability and proposes concrete, actionable remediation steps for the current repository. ## Output & Analysis Guidelines **Primary output format:** Markdown. All reports, tables, fix options, version diffs, and verification summaries 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 upgrade paths → `graph LR` showing current → target version with breaking change annotations - Fix option comparison → `quadrantChart` plotting Safe Harbour confidence vs. version change magnitude - Dependency tree showing vulnerable path → `graph TD` (root → parent → vulnerable dep) - Post-fix verification status → `flowchart` (scan → tests → result) Example — upgrade path: ````markdown ```mermaid graph LR A[log4j-core 2.14.1] -->|patch| B[2.14.2] A -->|minor| C[2.17.1 ✓ fix] A -->|major| D[3.0.0] style A fill:#f66,stroke:#333 style C fill:#6f6,stroke:#333 ``` ```` **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 ......

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