agentsclimarketplace

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%.

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.

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

  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 -->

Keep looking

Skills are one crate of 328,083. 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.