Help us improve
Share bugs, ideas, or general feedback.
From grimoire
Audits third-party dependencies for known vulnerabilities, license issues, and supply chain risks. Guides SBOM generation, automated scanning, triage by CVSS score, and remediation.
npx claudepluginhub jeffreytse/grimoire --plugin grimoireHow this skill is triggered — by the user, by Claude, or both
Slash command
/grimoire:audit-dependency-vulnerabilitiesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Systematically scan, triage, and remediate known vulnerabilities in third-party dependencies to reduce supply chain risk.
Scan application dependencies for known vulnerabilities and manage security updates across supply chain.
Audits project dependencies from package.json, requirements.txt, go.mod, Gemfile for CVEs, outdated packages, transitive issues, licenses, and supply chain risks. Provides severity assessments, remediation suggestions, and prioritized reports.
Audits dependencies for security, license, outdated, and transitive risk. Outputs findings table, license matrix, priority matrix, health score, and remediation plan.
Share bugs, ideas, or general feedback.
Systematically scan, triage, and remediate known vulnerabilities in third-party dependencies to reduce supply chain risk.
Adopted by: GitHub (Dependabot), Snyk (used by Google, Salesforce, Adobe), OWASP top 10 mandates Impact: OWASP A06:2021 moved Vulnerable Components from #9 to #6; the Log4Shell vulnerability (CVE-2021-44228) affected 93% of enterprise cloud environments and cost organizations an average of $4.6M to remediate (IBM 2022).
Third-party code is the majority of most applications. Vulnerabilities in transitive dependencies are as exploitable as direct ones — Log4Shell was a transitive dependency in most affected systems. Automated scanning must be continuous, not a one-time audit.
npm list --all, pip freeze, mvn dependency:tree, or use syft for container images.npm audit, pip-audit, snyk test, or trivy against the SBOM. Integrate into CI so every PR is scanned.npm audit --production and --all separately — dev dependency vulnerabilities are lower risk but not zero risk.# Quick audit
npm audit --audit-level=high
snyk test --severity-threshold=high
# SBOM generation
syft . -o spdx-json > sbom.json
grype sbom:sbom.json
Triage note: lodash@4.17.20 — CVE-2021-23337 (prototype pollution, CVSS 7.2). Assessment: lodash.template not used in this codebase → Medium priority; update in next sprint.