feat(cli): add manus-agent sbom-scan subcommand for SBOM vulnerability scanning (+66 tests) - #133
Open
manus-use wants to merge 1 commit into
Open
feat(cli): add manus-agent sbom-scan subcommand for SBOM vulnerability scanning (+66 tests)#133manus-use wants to merge 1 commit into
manus-use wants to merge 1 commit into
Conversation
This was referenced Aug 7, 2026
Open
Open
manus-use
force-pushed
the
feat/cli-sbom-scan
branch
from
August 9, 2026 00:08
6c9a8cf to
4359395
Compare
manus-use
force-pushed
the
feat/cli-sbom-scan
branch
from
August 10, 2026 08:09
4359395 to
fc5e04c
Compare
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
Implements the
manus-agent sbom-scanCLI subcommand — documented in the README but previously unimplemented. This adds a complete SBOM vulnerability scanner that parses CycloneDX or SPDX JSON files, queries OSV.dev in batch for known vulnerabilities, enriches each finding with EPSS scores and CISA KEV membership, and ranks results by severity.What's included
New tool:
src/manus_agent/tools/scan_sbom.pyCLI subcommand:
manus-agent sbom-scan <bom-file>--output text(default): Rich table with color-coded findings--output json: Machine-readable JSON withcritical_count, all findings, and metadataTest suite:
tests/test_scan_sbom.py(+66 tests)All tests are 100% mocked — no real HTTP calls.
Usage
Open PRs checked (no overlap)
Reviewed all 50 open PRs (#135–#184). No existing open or merged PR implements
sbom-scan:Test results
Zero new dependencies — uses only
requests(already in project deps).