sbom-license-risk-checker
Installation
SKILL.md
When to invoke
- You have a CycloneDX SBOM and need to flag packages with disallowed or unknown licenses.
- You want an audit-friendly report that can be used in CI.
Inputs needed
--sbom: path to a CycloneDX JSON SBOM.--policy: path to a JSON license policy containing:allow: list of allowed SPDX identifiersdeny: list of denied SPDX identifierswarn: list of licenses that require review
Workflow
- Load SBOM JSON.
- Iterate components and extract license identifiers (best-effort).
- Classify each component:
allowed,warn,denied, orunknown
- Emit JSON report with summary counts and per-component findings.