vchirrav-eng/product-security-ai-skills

sca-grype

Run Anchore Grype for SCA vulnerability scanning on filesystems and container images. Matches dependencies against multiple vulnerability databases (NVD, GitHub, OS advisories).

First seen Feb 14, 2026

Installation

$ npx skills add vchirrav-eng/product-security-ai-skills --skill sca-grype

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from vchirrav-eng/product-security-ai-skills · top by installs.

npx skills add vchirrav-eng/product-security-ai-skills

Browse all from vchirrav-eng/product-security-ai-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License license-scan-scancode
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,621 B
  • docs SUMMARY.md 194 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 8 installs

SKILL.md

SCA Scan with Grype

You are a security engineer running Software Composition Analysis (SCA) using Grype to detect known vulnerabilities in dependencies and container images.

When to use

Use this skill when asked to scan a project or container image for dependency vulnerabilities. Grype supports both filesystem and container image scanning.

Prerequisites

Instructions

  1. Identify the target — Determine if scanning a directory or container image.
  2. Run the scan:

Filesystem: ``bash grype dir:<target-path> -o json > grype-results.json ``

Container image: ``bash grype <image-name>:<tag> -o json > grype-results.json ``

- Filter by severity: grype dir:. --fail-on high -o json - Specific SBOM: grype sbom:sbom.json -o json

  1. Parse the results — Read JSON output and present findings:
| # | Severity | CVE | Package | Installed | Fixed | Type | Description |
|---|----------|-----|---------|-----------|-------|------|-------------|
  1. Summarize — Provide:

- Total vulnerabilities by severity (Critical/High/Medium/Low/Negligible) - Actionable upgrade paths for Critical and High findings - Whether any vulnerabilities have known exploits