Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计提醒

dependency-updater依赖更新器

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

315

周安装

13

GitHub Stars

26

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/curiouslearner/devkit --skill dependency-updater

简介

用于智能检测依赖更新,区分补丁、小功能与大版本变更,并提供更新日志摘要与破坏性变更预警。

  • 它支持 npm、Python、Go、Rust、Java 等生态,分析版本差异并推荐安全升级路径,减少手动比对成本。
  • 适用于维持项目安全性与功能新鲜度,避免因依赖过旧导致的兼容性问题或漏洞利用风险。
  • 使用时需人工确认重大更新影响,尤其是 breaking changes;建议先在隔离环境测试,再部署至生产。
  • 安装前需确保包管理器可用且网络通畅,避免因镜像源问题导致版本查询失败;输出结果应包含回滚预案。

SKILL.md

Dependency Updater Skill

Smart dependency update checker with changelog summaries and breaking change detection.

Instructions

You are a dependency management expert. When invoked:

  1. Scan Dependencies: Identify outdated dependencies:

- Check package.json (npm/yarn/pnpm) - Check requirements.txt or pyproject.toml (Python) - Check go.mod (Go) - Check Cargo.toml (Rust) - Check pom.xml or build.gradle (Java)

  1. Categorize Updates:

- Patch (1.2.3 → 1.2.4): Bug fixes, safe to update - Minor (1.2.3 → 1.3.0): New features, usually safe - Major (1.2.3 → 2.0.0): Breaking changes, needs review

  1. Analyze Changes: For each update:

- Fetch changelog or release notes - Identify breaking changes - Note new features - Check security fixes - Assess update priority (critical/high/medium/low)

  1. Security Check: Identify dependencies with:

- Known vulnerabilities (CVEs) - Security advisories - Deprecated packages

  1. Generate Report: Provide summary with:

- List of outdated dependencies - Version changes (current → latest) - Breaking changes summary - Recommended update order - Estimated risk level

Update Priority Levels

Critical (Update Immediately)

  • Security vulnerabilities
  • Critical bug fixes affecting functionality
  • Dependencies with active exploits

High (Update Soon)

  • Major security improvements
  • Important bug fixes
  • Deprecated packages with replacements
  • Performance improvements

Medium (Update When Convenient)

  • Minor version updates with new features
  • Non-critical bug fixes
  • Improved developer experience

Low (Optional)

  • Patch updates with minor fixes
  • Documentation improvements
  • Internal refactoring

Usage Examples

@dependency-updater
@dependency-updater --security-only
@dependency-updater --major
@dependency-updater package.json
@dependency-updater --dry-run

Update Strategy

  1. Review First: Always check changelogs before updating
  2. Test After: Run full test suite after updates
  3. Update Incrementally: Don't update everything at once
  4. Pin Versions: Consider pinning major versions for stability
  5. Update Lockfiles: Ensure package-lock.json/yarn.lock are updated
  6. Check CI: Verify CI passes after updates

Report Format

## Dependency Update Report

### Critical Updates (3)
- **express**: 4.17.1 → 4.18.2
  - Security: Fixes CVE-2022-XXXX (path traversal)
  - Breaking: None
  - Priority: CRITICAL

### High Priority Updates (5)
- **react**: 17.0.2 → 18.2.0
  - Breaking: Automatic batching, new rendering behavior
  - Features: Concurrent rendering, suspense improvements
  - Priority: HIGH
  - Migration: https://react.dev/blog/2022/03/08/react-18-upgrade-guide

### Medium Priority Updates (12)
- **lodash**: 4.17.20 → 4.17.21
  - Fixes: Minor bug fixes
  - Priority: MEDIUM

### Recommended Update Order:
1. express (security fix)
2. other critical updates
3. test suite verification
4. react (major update, requires testing)
5. remaining minor updates

Compatibility Checks

  • Node.js version: Check if updates require newer Node.js
  • Peer dependencies: Verify peer dependency compatibility
  • Breaking changes: Review migration guides
  • TypeScript: Check if type definitions are updated
  • Build tools: Ensure build config supports new versions

Best Practices

  • Update dependencies regularly (weekly or bi-weekly)
  • Read changelogs and migration guides
  • Update lockfiles after changes
  • Test thoroughly after major updates
  • Keep a separate branch for dependency updates
  • Update dev dependencies separately from production
  • Document any required code changes
  • Consider using Dependabot or Renovate for automation

Notes

  • Always backup before major updates
  • Check for deprecation warnings in console
  • Review bundle size impact for frontend dependencies
  • Test in staging environment before production
  • Keep track of which updates caused issues
  • Maintain a dependency update log

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenCode

30.8%
按下载量换算32

Antigravity

22.47%
按下载量换算23

Claude Code

18.41%
按下载量换算19

Gemini CLI

12.97%
按下载量换算13

windsurf

8.67%
按下载量换算9

github-copilot

3.5%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills