From container-security-scanner
Execute use when you need to work with security and compliance. This skill provides security scanning and vulnerability detection with comprehensive guidance and automation. Trigger with phrases like "scan for vulnerabilities", "implement security controls", or "audit security".
How this skill is triggered — by the user, by Claude, or both
Slash command
/container-security-scanner:scanning-container-securityThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Scan container images and Dockerfiles for vulnerabilities, misconfigurations, and compliance violations using Trivy, Grype, Snyk Container, and Hadolint. Analyze base images, OS packages, application dependencies, and runtime configurations to produce actionable security reports with remediation guidance.
Scan container images and Dockerfiles for vulnerabilities, misconfigurations, and compliance violations using Trivy, Grype, Snyk Container, and Hadolint. Analyze base images, OS packages, application dependencies, and runtime configurations to produce actionable security reports with remediation guidance.
trivy, grype, snyk, or docker scouthadolint for Dockerfile best practice validationjq for parsing JSON scan resultshadolint Dockerfile to catch misconfigurations before build (privileged instructions, pinned versions, shell best practices)trivy image <image:tag> or grype <image:tag>trivy image --scanners secret <image:tag>| Error | Cause | Solution |
|---|---|---|
trivy: unable to pull image | Image not found locally or registry auth failure | Pull image first with docker pull or configure registry credentials |
CRITICAL vulnerability found but no fix available | Upstream package has no patch yet | Document as accepted risk, use --ignore-unfixed flag, or switch to an alternative base image |
hadolint: DL3008 pin versions in apt-get install | Packages installed without version pinning | Add version pins (e.g., apt-get install nginx=1.24.0-1) or use --no-install-recommends |
Scan timeout on large image | Image has many layers or large filesystem | Use --timeout 15m flag; scan a specific layer or use --skip-dirs to exclude test data |
False positive CVE | Scanner database maps CVE to a package not actually exploitable | Add to .trivyignore or Grype ignore file with justification comment |
npx claudepluginhub flight505/skill-forge --plugin container-security-scannerCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.