How this skill is triggered — by the user, by Claude, or both
Slash command
/dep-auditor:dep-auditorThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
A shared support tool that audits project dependencies for known vulnerabilities
A shared support tool that audits project dependencies for known vulnerabilities and outdated packages. Used by agent-page (SRE review) and agent-ellis (QA).
This skill is triggered when the user's prompt contains audit deps or dep-auditor.
Auto-detect the package manager by checking for lock/config files:
| Config File | Package Manager | Audit Command |
|---|---|---|
package-lock.json | npm | npm audit |
yarn.lock | yarn | npm audit |
requirements.txt | pip | pip audit |
Pipfile.lock | pipenv | pip audit |
go.sum | go modules | govulncheck ./... |
Cargo.lock | cargo | cargo audit |
Gemfile.lock | bundler | bundle audit |
If multiple package managers are detected, audit all of them.
Run the appropriate audit command(s). For each vulnerability found, capture:
Check for outdated packages:
npm outdatedpip list --outdatedgo list -u -m allcargo outdatedFlag packages that are more than 2 major versions behind.
Return a structured report:
__AUDIT_RESULT__
Status: CLEAN / WARN / CRITICAL
Vulnerabilities: <n>
Critical: <n>
High: <n>
Medium: <n>
Low: <n>
Outdated: <n>
__AUDIT_RESULT__
If vulnerabilities are found, include details for each one.
Available to: agent-page, agent-ellis
When invoked by other agents, always emit the __AUDIT_RESULT__ block.
The calling agent decides how to act on the results.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub cmj0121/wisdom --plugin dep-auditor