analyze-deps
Analyze dependencies for updates, breaking changes, deprecations, and migration paths. Generates actionable reports with codebase impact assessment.
npx skills add majiayu000/claude-skill-registry --skill analyze-deps --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Purpose
- When to Use
- Input Options
- Analysis Flow
- Process
- Phase 1: Resolve Target Dependencies
- Phase 2: Query npm Registry
- Phase 3: Research Breaking Changes
- Phase 4: Codebase Impact Scan
- Phase 5: Generate Report
- Recommendations
- 🚨 Security Vulnerabilities (Address Immediately)
- ⚠️ Deprecated Packages
- 📋 Plan Migration
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 --jsonWhat 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.
