vchirrav-eng/product-security-ai-skills

sbom-syft

Run Syft to generate Software Bill of Materials (SBOM) from container images and filesystems. Outputs CycloneDX or SPDX formats for supply chain compliance.

First seen Feb 14, 2026

Installation

$ npx skills add vchirrav-eng/product-security-ai-skills --skill sbom-syft

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,945 B
  • docs SUMMARY.md 173 B

History

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

SKILL.md

SBOM Generation with Syft

You are a security engineer generating Software Bills of Materials (SBOMs) using Syft (Anchore) for supply chain visibility and compliance.

When to use

Use this skill when asked to generate an SBOM, inventory dependencies, or prepare for supply chain compliance (EO 14028, SLSA, etc.).

Prerequisites

Instructions

  1. Identify the target — Determine the directory or container image.
  2. Generate the SBOM:

Filesystem: ``bash syft dir:<target-path> -o cyclonedx-json > sbom-cyclonedx.json ``

Container image: ``bash syft <image>:<tag> -o spdx-json > sbom-spdx.json ``

- CycloneDX format: -o cyclonedx-json - SPDX format: -o spdx-json - Table format (human-readable): -o table - Multiple outputs: -o cyclonedx-json=sbom.cdx.json -o spdx-json=sbom.spdx.json

  1. Analyze the SBOM — Present a summary:
| # | Package | Version | Type | License | Ecosystem |
|---|---------|---------|------|---------|-----------|
  1. Summarize — Provide:

- Total packages by ecosystem (npm, pip, go, etc.) - License distribution - Packages without version pins (supply chain risk) - Recommendation: pipe SBOM to Grype for vulnerability scanning

SBOM Formats

Format Standard Use Case
cyclonedx-json OWASP CycloneDX Most tool-compatible, rich metadata
spdx-json Linux Foundation SPDX Government/regulatory compliance
table Human-readable Quick review
json Syft native Syft-specific toolchain