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

dependency-updater依赖更新器

Agent Skill

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

总安装

15,154

周安装

415

GitHub Stars

公开资料未说明

下载量

5,335
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:dependency-updater(依赖更新器)
来源仓库:https://github.com/alienfast/claude
仓库路径:skills/dependency-updater
安装命令:
npx skills add https://github.com/alienfast/claude --skill 'Dependency Updater'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alienfast/claude --skill 'Dependency Updater'

简介

协调专用 Agent 完成依赖更新全流程,包括分析、评估与回归验证。

  • 核心职责是任务分派与结果整合,不直接执行代码变更或技术研究。
  • 通过 TodoWrite 拆解工作项,委托 Ava、Devon 等专项 Agent 并行处理。
  • 最终输出需包含影响范围说明与回滚预案,确保更新过程可控可逆。
  • dependency-updater 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Dependency Updater

Coordinates automated package updates through specialized agent delegation and quality assurance.

Core Mission

Execute comprehensive dependency updates by orchestrating specialized agents. NEVER implement updates or conduct research yourself - coordinate, delegate, and validate.

Execution Protocol

1. Initialize with TodoWrite

  • Break dependency update workflow into discrete, testable phases
  • Create todos for analysis, research, impact assessment, updates, and validation
  • Refer to Agent Coordination Standards for parallel vs sequential execution patterns

2. Delegate All Tasks

Available agents:

  • research-subagent: Researches individual package changelogs, release notes, breaking changes
  • architect: Analyzes breaking change impact, assesses migration complexity
  • developer: Applies updates, implements code changes, fixes compatibility issues
  • quality-reviewer: Reviews security implications, performance impacts
  • technical-writer: Creates comprehensive PR documentation

Delegation Format:

Task for [agent]: [Specific update task]
Context: [Package update details and research findings]
Requirements:

- [Compatibility requirement]
- [Breaking change handling]

Acceptance: [Quality gates to verify success]

3. Dependency Update Workflow

Phase 1: Update Analysis

  1. Run ncu --jsonUpgraded to detect available updates
  2. Parse output to identify packages with version changes
  3. Filter packages based on user criteria (--filter, --dry-run)

Phase 1.5: Semver Classification

CRITICAL: Properly classify ALL version changes according to Semantic Versioning Standards before proceeding. Incorrect classification leads to wrong research depth and documentation.

Reference: Follow the comprehensive semver classification rules in ~/.claude/standards/semver.md which includes:

  • Detailed classification examples
  • Common error patterns to avoid
  • Version range notation handling
  • Pre-release version rules

Quick Classification:

  • MAJOR (X.y.z → X+1.y.z): Breaking changes, incompatible API changes
  • MINOR (x.Y.z → x.Y+1.z): New functionality, backward compatible
  • PATCH (x.y.Z → x.y.Z+1): Bug fixes, backward compatible

Process:

  1. Apply semver standards for parsing and classification
  2. Group packages by classification: MAJOR, MINOR, PATCH
  3. Verify classification matches semver standards before delegating

Phase 2: Parallel Research (Independent Tasks)

CRITICAL: Launch ALL package research tasks in a single parallel batch using one message with multiple Task tool calls. Target 10-20 parallel research-subagents for maximum efficiency.

Research each package concurrently based on semver classification from Phase 1.5:

  • MAJOR changes (X.y.z → X+1.y.z): Full research including changelogs, breaking changes, upgrade or migration guides
  • MINOR changes (x.Y.z → x.Y+1.z): Minimal research - check for new features and deprecated APIs only. If release notes aren't found, continue with the update anyway
  • PATCH changes (x.y.Z → x.y.Z+1): Skip research entirely - assume safe bug fixes. Always proceed even without release information
  • Document any security advisories regardless of change type

Verification: Ensure research depth matches the actual semver classification, not package names or assumed importance.

Parallelism Requirement: Never research packages sequentially - always batch all research tasks simultaneously.

Phase 3: Impact Assessment (Sequential)

  1. Architect: Analyze breaking changes across all packages
  2. Architect: Assess migration complexity and code impact
  3. Search codebase for package usage patterns
  4. Identify files requiring updates due to breaking changes

Phase 4: Apply Updates (Sequential)

  1. Developer: Update package.json files (ncu -u)
  2. Developer: Install dependencies (pnpm install)
  3. Developer: Implement required code changes for breaking changes
  4. Handle dependency conflicts and version mismatches

Phase 5: Quality Validation (Parallel)

Run quality checks concurrently:

  • TypeScript compilation (pnpm typecheck)
  • Linting with fixes (pnpm lint:fix)
  • Test suite execution (pnpm test)
  • Quality-reviewer: Security and performance validation

Phase 6: PR Creation (Sequential)

  1. Check existing PR status:

- Run gh pr status to check if current branch has an open PR - If PR exists: Continue with existing branch and update existing PR - If no PR exists: Create feature branch with timestamp

  1. Technical-writer: Generate comprehensive commit message
  2. Technical-writer: Create or update PR description including:

- Package update summary grouped by semver classification in markdown tables - Table columns: Package, Current, Target, and relevant details (Breaking Changes/New Features/Fixes) - Breaking change impact analysis for major version updates - Migration steps performed for major version changes - Quality validation results - Links to changelogs and release notes

  1. Push and handle PR:

- If existing PR: Push commits to existing branch, update PR description via gh pr edit - If new PR: Push branch and create PR via gh pr create

  1. REQUIRED: Provide the GitHub PR link in the final output for easy user review

Usage Options

  • No arguments: Full automated workflow
  • --dry-run: Preview changes without applying them
  • --filter <pattern>: Only update packages matching the pattern

Error Handling

When encountering errors:

  1. Evidence First: Capture exact error messages and dependency conflicts
  2. Delegate Investigation: Use appropriate agents (architect for design issues, developer for implementation)
  3. Quality Gates: All tests must pass before PR creation
  4. Rollback Plan: Document steps to revert changes if issues arise

Quality Standards

Each phase must meet:

  • ✅ All existing tests pass
  • ✅ No new linting violations
  • ✅ TypeScript compilation succeeds
  • ✅ Security vulnerabilities addressed
  • ✅ Breaking changes properly migrated

Success Criteria

Dependency update succeeds when:

  • All package updates applied successfully
  • Breaking changes resolved with code updates
  • Quality validation passes completely
  • Comprehensive PR created with documentation
  • No regression in functionality

Key Principles

  1. Coordinate, Don't Execute: Delegate all specialized work to appropriate agents
  2. Parallel Where Possible: Research packages concurrently for efficiency
  3. Quality First: Never compromise on testing and validation
  4. Evidence-Based: Use agent research for all decisions
  5. Comprehensive Documentation: Ensure PR provides complete context

Important Notes

  • Always use ncu command directly - NEVER use npx npm-check-updates
  • Ensure ncu is globally installed: npm install -g npm-check-updates
  • Use ncu for all update detection and application operations

Remember: Your strength is in orchestration, delegation, and ensuring safe dependency updates.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Cursor

42.69%
按下载量换算2,278

Claude Code

30%
按下载量换算1,601

Antigravity

17.4%
按下载量换算928

Gemini CLI

8.29%
按下载量换算442

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills