dependency-audit
3
总安装量
1
周安装量
#55799
全站排名
安装命令
npx skills add https://github.com/fusengine/agents --skill dependency-audit
Agent 安装分布
amp
1
cline
1
opencode
1
cursor
1
continue
1
kimi-cli
1
Skill 文档
Dependency Audit Skill
Overview
Run dependency vulnerability checks using native package manager audit tools.
Supported Ecosystems
| Ecosystem | Tool | Auto-fix |
|---|---|---|
| npm/yarn/pnpm/bun | npm audit / yarn audit |
Yes |
| PHP/Composer | composer audit |
Manual |
| Python/pip | pip-audit / safety check |
Manual |
| Rust/Cargo | cargo audit |
Yes |
| Go | govulncheck ./... |
Manual |
| Swift/CocoaPods | pod audit |
Manual |
| Ruby/Bundler | bundle audit |
Manual |
Workflow
- Detect package manager from lock files
- Run appropriate audit command
- Parse output for vulnerabilities
- Classify by severity (CRITICAL/HIGH/MEDIUM/LOW)
- Suggest fix versions or alternatives
Auto-Fix Support
When --fix flag is used:
npm audit fixfor safe updatescargo audit fixfor Rust- Manual guidance for other ecosystems