Dep check
Skill huzaifa525/claude-code-optimizer/templates/.claude/skills/dep-check
Use when the user wants to check dependencies, find outdated packages, or audit for vulnerabilities.From its SKILL.md
npx -y skills add huzaifa525/claude-code-optimizer --skill dep-checkAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 4 commands, including `npm outdated 2>/dev/null` and 3 more.
SKILL.md
1.4 KB, 358 tokens by cl100k_base, as published. Nobody here has run it
Check all project dependencies for issues.
Steps
-
Detect package manager
- package.json → npm/yarn/pnpm
- requirements.txt / pyproject.toml → pip
- go.mod → Go modules
- Cargo.toml → Cargo
- Gemfile → Bundler
-
Check for outdated packages
npm outdated 2>/dev/null pip list --outdated 2>/dev/null -
Check for vulnerabilities
npm audit 2>/dev/null pip audit 2>/dev/null -
Check for deprecated packages
- Read package.json/requirements.txt
- Flag packages known to be deprecated or unmaintained
-
Output report:
## Dependency Report ### Vulnerable (fix immediately) | Package | Current | Issue | Fix | |---------|---------|-------|-----| | [name] | [ver] | [CVE/issue] | [upgrade to] | ### Outdated (major version behind) | Package | Current | Latest | Breaking Changes | |---------|---------|--------|-----------------| | [name] | [ver] | [ver] | [yes/no + notes] | ### Outdated (minor/patch) | Package | Current | Latest | |---------|---------|--------| | [name] | [ver] | [ver] | ### Healthy - [X] packages are up to date
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.