smithery.ai

dependency-analysis

Analyze project dependencies for security vulnerabilities, outdated packages, and upgrade paths. Use when auditing dependencies or planning upgrades.

First seen Mar 20, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,398 B
  • docs SUMMARY.md 176 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Dependency Analysis Skill

Purpose

Systematic analysis of project dependencies for security and maintenance.

When to Use

  • Security audits
  • Before adding new dependencies
  • Planning version upgrades
  • Regular maintenance checks

Analysis Process

Step 1: Identify Package Manager

Detect from files:

  • package-lock.json / yarn.lock / pnpm-lock.yaml → Node.js
  • requirements.txt / Pipfile.lock / poetry.lock → Python
  • go.sum → Go

Step 2: Run Security Audit

Execute appropriate command:

# Node.js
npm audit --json || yarn audit --json

# Python (if pip-audit installed)
pip-audit --format json

# Go
govulncheck ./...

Step 3: Check Outdated

# Node.js
npm outdated --json

# Python
pip list --outdated --format json

# Go
go list -u -m all

Step 4: Analyze Results

Categorize findings:

  • Critical: Security vulnerabilities with known exploits
  • High: Security issues or major version behind
  • Medium: Minor version behind or deprecated
  • Low: Patch version behind

Output Format

Use [templates/dep-report.md](templates/dep-report.md)

Storage Location

Save to: docs/research/dependency-audit-{date}.md