agentsclimarketplace

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

Install
npx -y skills add huzaifa525/claude-code-optimizer --skill dep-check

Assembled 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

  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
    
<!-- Skill by Huzefa Nalkheda Wala | github.com/huzaifa525 | claude-code-optimizer -->

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.