Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

analyze-deps分析部门

Agent Skill

analyze-deps 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

188

周安装

8

GitHub Stars

公开资料未说明

下载量

66
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:analyze-deps(分析部门)
来源仓库:https://github.com/nexuslabs-ai/nexus-claude-skills
仓库路径:skills/analyze-deps
安装命令:
npx skills add https://github.com/nexuslabs-ai/nexus-claude-skills --skill analyze-deps
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/nexuslabs-ai/nexus-claude-skills --skill analyze-deps

简介

用于按需检查依赖项的更新、破坏性变更和废弃情况。

  • 生成迁移指南和影响分析报告,支持单个包或全工作区扫描。
  • 自动映射代码库中的依赖使用情况,提供替换建议。
  • 安装命令:npx skills add https://github.com/nexuslabs-ai/nexus-claude-skills --skill analyze-deps。
  • 需配合 GITHUB_TOKEN 环境变量使用以获取安全漏洞信息。

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

# 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 updates) │
│    - GitHub releases API            │
│    - CHANGELOG.md fallback          │
│    - WebSearch for migration guides │
│    - Official docs for breaking     │
│      changes                        │
└─────────────────────────────────────┘
    │
    ▼
┌─────────────────────────────────────┐
│ 4. Codebase Impact Scan             │
│    - Find all imports               │
│    - Trace usage patterns           │
│    - Map against breaking changes   │
└─────────────────────────────────────┘
    │
    ▼
┌─────────────────────────────────────┐
│ 5. Generate Report                  │
│    - Markdown file in reports/deps/ │
│    - Upgrade recommendations        │
│    - Risk assessment                │
└─────────────────────────────────────┘

Process

Phase 1: Resolve Target Dependencies

Parse input to determine scope:

Input TypeDetectionAction
Single packageStarts with @ or no /Find in all package.json dependencies
Workspace pathContains / (e.g., packages/react)Read that workspace's package.json
allLiteral string "all"Glob all **/package.json files

For single package:

Use Grep tool:
Grep(pattern: "{package-name}", glob: "**/package.json")

For workspace:

Use Read tool:
Read(file_path: "{workspace}/package.json")

For all:

Use Glob tool:
Glob(pattern: "**/package.json")
Note: node_modules is excluded by default

Extract dependencies:

  • dependencies
  • devDependencies
  • peerDependencies (note as peer)

Phase 2: Query npm Registry

For each dependency, fetch registry info:

npm view {package-name} --json

Error handling for npm commands:

Error TypeDetectionAction
Network timeoutCommand hangs > 30sUse timeout 30 prefix, note as "timed out"
404 Not FoundExit code 1, "Not found" in outputNote as "package not found in registry"
401/403 Auth"ENEEDAUTH" or "E403"Note as "private package, auth required"
Rate limited"ETOOMANYREQS"Wait and retry, or note as "rate limited"

Example with timeout:

timeout 30 npm view {package-name} --json 2>/dev/null || echo '{"error": "fetch failed"}'

Extract:

FieldPurpose
versionLatest version available
deprecatedDeprecation message (if any)
timeRelease dates for versions
repositoryGitHub URL for changelog lookup

Classify version bump:

TypeCriteriaRisk
Patch1.0.01.0.1Low
Minor1.0.01.1.0Medium
Major1.0.02.0.0High

Emoji usage: Always use actual Unicode emojis in reports, NOT GitHub shortcodes:

  • Use 🔴 not :red_circle:
  • Use 🟡 not :yellow_circle:
  • Use 🟢 not :green_circle:
  • Use not :white_check_mark:

Flag deprecated packages immediately — these are priority items.

Security vulnerability check:

Run npm audit to identify known vulnerabilities:

npm audit --json

Handling audit results:

  • Packages with vulnerabilities should be flagged with 🔴 High risk regardless of version bump type
  • Include vulnerability severity (critical, high, moderate, low) in the report
  • Link to advisory details when available

Note: Security issues take priority over all other risk factors.

Phase 3: Research Breaking Changes

Only for packages with available updates (prioritize major bumps).

Research sources (in order):

  1. GitHub Releases API https://api.github.com/repos/{owner}/{repo}/releases

- Look for release notes between current and latest version - Extract breaking changes, migration notes

  1. CHANGELOG.md https://raw.githubusercontent.com/{owner}/{repo}/main/CHANGELOG.md Branch fallback order: https://raw.githubusercontent.com/{owner}/{repo}/main/CHANGELOG.md # If 404, try: https://raw.githubusercontent.com/{owner}/{repo}/master/CHANGELOG.md

- Parse for version headers - Extract changes between current and latest 1. Try main branch first 2. Fall back to master if 404 3. Use repository's default branch from API metadata as final fallback

  1. WebSearch for migration guides "{package-name} v{from} to v{to} migration guide" "{package-name} v{to} breaking changes" "{package-name} upgrade guide official"

Security research triggers:

Not every package needs security research. Search for security issues when:

  1. Package is flagged by npm audit - deep search required
  2. Major version bump - include security in migration research
  3. Package hasn't been updated in 2+ years - search for known issues

Security search queries (when triggered):

"{package-name} CVE"
"{package-name} security vulnerability"
"{package-name} v{current-version} security advisory"
"{package-name} v{latest-version} security advisory"

Check both current AND latest version for vulnerabilities - upgrading isn't always safer.

  1. Official documentation

- Check package homepage for upgrade guides - Look for migration documentation

Search priority:

  • Official documentation > GitHub releases > Release notes > Community guides
  • Avoid outdated blog posts (check dates)
  • Prefer sources from package maintainers

Document for each package:

  • Breaking changes list
  • Migration steps (if found)
  • Links to official guides

Phase 4: Codebase Impact Scan

Only scan for impact when breaking changes exist.

If no breaking changes were found in Phase 3, skip this phase entirely. There's no need to list all files using a package when everything is compatible.

When breaking changes exist:

Use Grep tool to find import statements:
Grep(pattern: "from ['\"]package-name", glob: "**/*.{ts,tsx}")

Use Grep tool to find require statements:
Grep(pattern: "require\\(['\"]package-name", glob: "**/*.{js,ts}")

Map against breaking changes only:

  • For each breaking change found in Phase 3
  • Check if our codebase uses the affected API
  • Only note files that use affected APIs

Output (only when impact exists):

**Impacted files:**
| File | Line | Impact |
|------|------|--------|
| `packages/react/src/components/modal.tsx` | 12 | Uses deprecated `open` prop |

If no files are impacted by breaking changes:

**Impact:** None. Our codebase does not use any affected APIs.

IMPORTANT: Do NOT list all files that import the package. Only list files that need changes due to breaking changes or deprecated APIs.

Phase 5: Generate Report

Location: reports/deps/{target}-{YYYY-MM-DD}.md

Where {target} is:

  • Package name (sanitized): radix-ui-react-dialog
  • Workspace name: packages-react
  • all-workspaces for full scan

Report structure:

# Dependency Analysis: {target}

Generated: {YYYY-MM-DD HH:mm}
Scope: {description of what was analyzed}

## Summary

| Metric | Count |
|--------|-------|
| Packages analyzed | X |
| Up to date | X |
| Updates available | X |
| Deprecated | X |
| Security issues | X |

## Risk Overview

| Risk | Count | Action |
|------|-------|--------|
| 🔴 High | X | Requires migration planning |
| 🟡 Medium | X | Review changelog before upgrade |
| 🟢 Low | X | Safe to upgrade |

## Updates Available

| Package | Current | Latest | Type | Deprecated | Risk |
|---------|---------|--------|------|------------|------|
| package-a | 1.0.0 | 4.0.0 | major | No | 🔴 High |
| package-b | 2.1.0 | 3.0.0 | major | Yes → use package-b-v2 | 🔴 High |
| package-c | 1.2.0 | 1.5.0 | minor | No | 🟡 Medium |
| package-d | 3.0.0 | 3.0.5 | patch | No | 🟢 Low |

## Up to Date

| Package | Version |
|---------|---------|
| package-e | 2.0.0 |
| package-f | 1.5.0 |

---

## Security

{If no vulnerabilities found:}
✅ No known vulnerabilities found in current or target versions.

{If vulnerabilities exist:}
⚠️ {X} packages have security considerations

| Package | Current | Target | Current Vulnerabilities | Target Vulnerabilities | Recommendation |
|---------|---------|--------|-------------------------|------------------------|----------------|
| lodash | 4.17.20 | 4.17.21 | 🔴 CVE-2021-23337 (High) | ✅ None | Upgrade to fix |
| some-pkg | 1.0.0 | 2.0.0 | ✅ None | 🟡 CVE-2024-1234 (Medium) | Stay on 1.0.0 or wait for patch |
| another | 3.0.0 | 4.0.0 | 🔴 CVE-2023-111 (High) | ✅ Fixed | Upgrade to 3.0.5+ |

**Legend:**
- 🔴 High/Critical severity - immediate action required
- 🟡 Medium severity - plan remediation
- 🟢 Low severity - address when convenient
- ✅ None - no known vulnerabilities

**Recommendation types:**
- **Upgrade to fix** - current version has vulnerability, latest is clean
- **Stay on current** - latest version introduced new vulnerability
- **Upgrade to specific version** - skip problematic versions, target safe one
- **Monitor** - low severity, no immediate action needed

---

## Detailed Analysis

### package-a: 1.0.0 → 4.0.0 (major) 🔴

**Security:**
- Current version: 🔴 CVE-2021-23337 - Prototype Pollution (High)
  - Advisory: https://nvd.nist.gov/vuln/detail/CVE-2021-23337
  - Fixed in: 4.0.0
- Target version: ✅ No known vulnerabilities

**Breaking changes:**
- `OldComponent` removed, use `NewComponent` instead
- `legacyProp` renamed to `modernProp`
- Minimum Node version now 18+

**Migration guide:** [Official Migration Guide](link)

**Impacted files:**
| File | Line | Impact |
|------|------|--------|
| `packages/react/src/thing.tsx` | 15 | Uses `OldComponent` |
| `apps/docs/src/example.tsx` | 42 | Uses `legacyProp` |

**Migration steps:**
1. Replace `OldComponent` with `NewComponent` in `thing.tsx`
2. Rename `legacyProp` to `modernProp` in `example.tsx`
3. Verify Node version >= 18 in CI

---

### package-b: 2.1.0 → 3.0.0 (major, deprecated) 🔴

**⚠️ Deprecated:** This package is deprecated. Use `package-b-v2` instead.

**Replacement:** [@scope/package-b-v2](npm-link)

**Migration guide:** [Migration from v2 to v3](link)

**Impacted files:**
| File | Line | Impact |
|------|------|--------|
| `packages/core/src/util.ts` | 8 | Must migrate to new package |

**Migration steps:**
1. Install replacement: `yarn add @scope/package-b-v2`
2. Update imports in `util.ts`
3. Remove old package: `yarn remove package-b`

---

### package-c: 1.2.0 → 1.5.0 (minor) 🟡

**Breaking changes:** None

**Impact:** None. Safe to upgrade.

**Migration steps:**

yarn upgrade package-c@^1.5.0


---

## Recommendations

### 🚨 Security Vulnerabilities (Address Immediately)

1. **package-a** — CVE-2021-23337 (High) in current version
  - Action: Upgrade to 4.0.0
  - Effort: Medium (has breaking changes, 2 files affected)

### ⚠️ Deprecated Packages

1. **package-b** — Deprecated, migrate to `package-b-v2`
  - Effort: Low (1 file affected)
  - Risk: Package may stop receiving security updates

### 📋 Plan Migration

1. **package-a** — Major version bump with breaking changes
  - Effort: Medium (2 files affected)
  - Suggest: Create dedicated PR for this migration

### ✅ Safe to Upgrade

1. **package-c** — Minor version (new features, no breaking changes)
2. **package-d** — Patch version (bug fixes only)

---

## Next Steps

- Address deprecated packages first (security risk)
- Create migration PR for package-a
- Batch upgrade patch/minor versions

---

*Report generated by analyze-deps skill*

Error Handling

SituationAction
npm registry unreachableNote package as "unable to check", continue with others
No changelog foundNote as "changelog not found, manual review needed"
GitHub API rate limitedUse WebSearch fallback for breaking changes
Package not in registryNote as "private or unpublished package"

Principles

  1. Prioritize by risk — Security > Deprecated > Major > Minor > Patch
  2. Research thoroughly — Don't recommend upgrades without understanding impact
  3. Only show impacted files — Don't list all usage; only files that need changes due to breaking changes
  4. Provide actionable steps — Every issue should have a clear resolution path
  5. Use official sources — Prefer maintainer docs over random blog posts
  6. Use Unicode emojis — Always use actual emoji characters (🔴 🟡 🟢 ✅), not shortcodes

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

26.32%
按下载量换算17

windsurf

24.25%
按下载量换算16

trae

18.77%
按下载量换算12

OpenCode

12.93%
按下载量换算9

Cursor

8.36%
按下载量换算6

Codex

3.59%
按下载量换算2

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills