| name | mern-deps |
| description | Check and update dependencies safely with security audits and test verification. |
| argument-hint | [--check] [--audit] [--update] [--update-major] |
| allowed-tools | Bash, Write, Read, Glob, Grep |
Purpose
Manage dependencies safely: audit for vulnerabilities, check for updates, and update with test verification.
Arguments
--check — Check for outdated packages (default if no args)
--audit — Run security audit
--update — Update patch/minor versions with test verification
--update-major — Show available major updates (requires manual review)
Workflow
Check (--check)
- Run
pnpm outdated
- Categorize: patch, minor, major
- Report packages with updates available
- Flag packages with known issues
Audit (--audit)
- Run
pnpm audit
- Report vulnerabilities by severity (critical, high, moderate, low)
- Suggest fixes for critical/high
- Check for patches available
Update (--update)
- Show packages to update (patch + minor only)