security-scan-trivy

Scans projects for vulnerabilities with Trivy and prioritizes Critical and High findings.

Updated Mar 23, 2026
One-click install
npx skills add https://github.com/sakamotomomotaro0809-netizen/tateyomi --skill security-scan-trivy-sakamotomomotaro0809-netizen
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: security-scan-trivy
Source: https://github.com/sakamotomomotaro0809-netizen/tateyomi/tree/main/taisun_agent/.claude/skills/security-scan-trivy
Command: npx skills add https://github.com/sakamotomomotaro0809-netizen/tateyomi --skill security-scan-trivy-sakamotomomotaro0809-netizen

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Teams need a consistent way to run Trivy vulnerability scans and decide which findings to fix first, without drowning in low-severity noise or shipping unreviewed exceptions. ## Core Features & Use Cases - Severity-First Triage: Focuses remediation on Critical and High vulnerabilities before anything else. - Exception Governance: Requires every accepted vulnerability to record a justification and an expiration deadline. - Phased CI Adoption: Guides rolling Trivy into CI pipelines by starting with warnings and graduating to build failures. - Use Case: When adding container scanning to a repository, use this Skill to run Trivy, triage Critical/High CVEs, document any accepted risks with deadlines, and wire the scan into CI as a warning before enforcing failures. ## Quick Start Scan this repository with Trivy, list the Critical and High vulnerabilities, and propose how to stage it into our CI pipeline.

Frequently Asked Questions about security-scan-trivy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scan a project for vulnerabilities with Trivy?▼

Run Trivy against your filesystem, container image, or repository, then review the report starting with Critical and High severity findings. Lower severities can be addressed after the top risks are remediated or formally accepted.

How should I prioritize Trivy scan results?▼

Address Critical and High severity vulnerabilities first, since they carry the greatest exploit risk. Medium and Low findings can be scheduled later or accepted with documented justification.

How do I handle vulnerabilities I cannot fix right away?▼

Record each accepted vulnerability as an explicit exception that includes the reason for acceptance and an expiration deadline. This keeps risk decisions auditable and ensures exceptions are revisited rather than forgotten.

How do I add Trivy scanning to a CI pipeline safely?▼

Introduce Trivy in stages: first run it in warning-only mode so teams can see findings without breaking builds, then switch to failing the pipeline once the baseline is clean. This avoids disrupting delivery during adoption.

When should a Trivy scan fail the CI build?▼

Fail the build only after the warning phase has stabilized and existing Critical and High findings are resolved or formally excepted. Failing immediately on first rollout typically causes alert fatigue and workarounds.