Install
openclaw skills install dep-vuln-scannerScan project dependencies for known security vulnerabilities using the OSV.dev API. Supports npm (package.json), Python/pip (requirements.txt), and Go (go.mo...
openclaw skills install dep-vuln-scannerScan project dependencies against the OSV.dev vulnerability database. Zero config, no API keys.
# Scan current directory (auto-detects project type)
python3 scripts/dep_vuln_scan.py .
# Scan a specific project
python3 scripts/dep_vuln_scan.py /path/to/project
# JSON output for CI/CD
python3 scripts/dep_vuln_scan.py . --json
# Scan only npm dependencies
python3 scripts/dep_vuln_scan.py . --ecosystem npm
| File | Ecosystem |
|---|---|
package.json | npm |
requirements.txt | PyPI |
go.mod | Go |
Multiple files in the same directory are scanned together.
--json — Machine-readable JSON output--ecosystem <name> — Filter by ecosystem (repeatable)