Dep check
Skill huzaifa525/claude-code-optimizer/templates/.claude/skills/dep-check
Optimize Claude Code token usage — 22 skills, 8 hooks, 6 rules. One npm install. Zero manual steps. Cut costs by 67%.
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.
One thing 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.
What its author says it does
Copied from the file, not written here
Use when the user wants to check dependencies, find outdated packages, or audit for vulnerabilities.
SKILL.md
1.4 KB, 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