Agent skill · Databases

analyze-deps

Analyze dependencies for updates, breaking changes, deprecations, and migration paths. Generates actionable reports with codebase impact assessment.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill analyze-deps --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 15 KB
Bundled scripts: none
Allowed tools: -Read-Grep-Glob-Bash-WebSearch-WebFetch
Path: skills/analysis/analyze-deps/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Analyze Dependencies ## Purpose On-demand dependency analysis that checks for available updates, breaking changes, deprecations, and maps impact against the codebase. Generates actionable reports with migration guidance. ## When to Use - Auditing dependencies before a major release - Checking for security vulnerabilities - Planning dependency upgrades - Finding deprecated packages that need replacement ## Input Options ```bash # Single package /analyze-deps @radix-ui/react-dialog # Specific workspace /analyze-deps packages/react # All workspaces /analyze-deps all ``` ## Analysis Flow ``` Input (package or workspace) │ ▼ ┌─────────────────────────────────────┐ │ 1. Resolve package.json(s) │ │ - Single package → find in deps │ │ - Workspace → read its pkg.json │ │ - All → glob all package.jsons │ └─────────────────────────────────────┘ │ ▼ ┌─────────────────────────────────────┐ │ 2. npm Registry Fetch │ │ - Current vs latest versions │ │ - Classify: patch/minor/major │ │ - Check deprecation status │ │ - Get suggested replacements │ └─────────────────────────────────────┘ │ ▼ ┌─────────────────────────────────────┐ │ 3. Changelog & Migration Research │ │ (Only for packages with upd

What's inside
Steps it walks through
  1. Purpose
  2. When to Use
  3. Input Options
  4. Analysis Flow
  5. Process
  6. Phase 1: Resolve Target Dependencies
  7. Phase 2: Query npm Registry
  8. Phase 3: Research Breaking Changes
  9. Phase 4: Codebase Impact Scan
  10. Phase 5: Generate Report
  11. Recommendations
  12. 🚨 Security Vulnerabilities (Address Immediately)
  13. ⚠️ Deprecated Packages
  14. 📋 Plan Migration
Ships with 1 file
  • metadata.json
Commands it runs
Single package
Specific workspace
All workspaces
npm view {package-name} --json
timeout 30 npm view {package-name} --json 2>/dev/null || echo '{"error": "fetch failed"}'
npm audit --json
More from claude-skill-registry
All skills →
About this skill
What does the analyze-deps skill do?

Analyze dependencies for updates, breaking changes, deprecations, and migration paths. Generates actionable reports with codebase impact assessment.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill analyze-deps --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going