Agent skill

dep-check

Use when the user wants to check dependencies, find outdated packages, or audit for vulnerabilities.

Stars 163
Forks 31

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

  1. Detect package manager

    • package.json → npm/yarn/pnpm
    • requirements.txt / pyproject.toml → pip
    • go.mod → Go modules
    • Cargo.toml → Cargo
    • Gemfile → Bundler
  2. Check for outdated packages

    npm outdated 2>/dev/null
    pip list --outdated 2>/dev/null
    
  3. Check for vulnerabilities

    npm audit 2>/dev/null
    pip audit 2>/dev/null
    
  4. Check for deprecated packages

    • Read package.json/requirements.txt
    • Flag packages known to be deprecated or unmaintained
  5. 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
    

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results