feat(sbom): add SBOM generation, license resolution, and CSV export tooling#239
Merged
johntmyers merged 4 commits intomainfrom Mar 11, 2026
Merged
feat(sbom): add SBOM generation, license resolution, and CSV export tooling#239johntmyers merged 4 commits intomainfrom
johntmyers merged 4 commits intomainfrom
Conversation
…ooling Add mise-integrated SBOM pipeline for container images using Syft. Includes license resolution via crates.io/npm/PyPI APIs and CycloneDX JSON to CSV conversion. Adds agent skill for on-demand SBOM operations. Closes #237
…xclude dev artifacts
…ith full license texts Use cargo-about for Rust crate licenses and pip-licenses for Python packages. Produces a single attribution file with per-package copyright notices and full license text for open-source compliance.
drew
approved these changes
Mar 11, 2026
drew
pushed a commit
that referenced
this pull request
Mar 16, 2026
…ooling (#239) * feat(sbom): add SBOM generation, license resolution, and CSV export tooling Add mise-integrated SBOM pipeline for container images using Syft. Includes license resolution via crates.io/npm/PyPI APIs and CycloneDX JSON to CSV conversion. Adds agent skill for on-demand SBOM operations. Closes #237 * fix(sbom): chain task dependencies to run generate → resolve → csv sequentially * fix(sbom): add concurrent license resolution, progress logging, and exclude dev artifacts * feat(notices): add mise run notices to generate THIRD-PARTY-NOTICES with full license texts Use cargo-about for Rust crate licenses and pip-licenses for Python packages. Produces a single attribution file with per-package copyright notices and full license text for open-source compliance.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
mise run sbom) that generates CycloneDX SBOMs for all container images using Syft, resolves missing/hash-based licenses via crates.io/npm/PyPI APIs, and exports CSV reports todeploy/sbom/output/mise run noticesto generateTHIRD-PARTY-NOTICESwith full license texts for open-source attribution compliance, usingcargo-about(Rust) andpip-licenses(Python)sbom:checksubtask for future PR CI integration (advisory-only, non-blocking).agents/skills/sbom/SKILL.md) for on-demand SBOM operationsDetails
New files
deploy/sbom/resolve_licenses.pydeploy/sbom/sbom_to_csv.pytasks/sbom.tomlsbom(orchestrator),sbom:generate,sbom:resolve,sbom:csv,sbom:checktasks/notices.tomlnoticesabout.tomlcargo-aboutconfiguration with accepted SPDX license list.agents/skills/sbom/SKILL.mdModified files
mise.tomlubi:anchore/syftandubi:EmbarkStudios/cargo-abouttools, updatedpython_pathsto includedeploy/sbom/*.py.gitignoredeploy/sbom/output/(generated CSVs are not committed)scripts/generate_third_party_notices.pycargo-about(Rust) andpip-licenses(Python) for full license text extractionTHIRD-PARTY-NOTICESDesign decisions
uv run --with.github/,.venv/,.cache/to avoid dev artifact noise@openclaw/*,opencode-*,pi-extension-*) are accepted as unresolved gaps for nowsbom:checkis advisory-only to avoid blocking PRs on transient API failuresTesting
mise run pre-commitpassesmise run sbomgenerates SBOM, resolves licenses, exports CSV end-to-endmise run noticesgenerates THIRD-PARTY-NOTICES with full license texts (43s)Closes #237