Agent skill
dep-check
Use when the user wants to check dependencies, find outdated packages, or audit for vulnerabilities.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/dep-check
SKILL.md
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?