Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    vneseyoungster

    dependency-analysis

    vneseyoungster/dependency-analysis
    Security
    25

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

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

    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

    Storage Location

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

    Recommended Servers
    Sentry
    Sentry
    Context7
    Context7
    Repository
    vneseyoungster/chocovine
    Files