运行时依赖
版本
输出格式
安装命令
点击复制本土化适配说明
Skylv Package Updater — Skylv 包更新器 安装说明: 安装命令:["openclaw skills install skylv-package-updater"] 支持国内镜像加速,使用 --registry https://cn.longxiaskill.com 参数可加速下载
技能文档
Dependency 更新r Overview
扫描s project dependencies and 检查s for 更新s, shows change记录s, identifies breaking changes.
When to Use User asks to "更新 dependencies" or "检查 for 更新s" Regular mAIntenance How It Works Step 1: 检测 package 管理器
package.json -> npm pyproject.toml -> pip Cargo.toml -> cargo go.mod -> go
Step 2: 检查 outdated
npm: npm outdated --json pip: pip 列出 --outdated --格式化=json cargo: cargo outdated
Step 3: Risk assessment
补丁 (1.2.3 -> 1.2.4): Low risk - auto-更新 Minor (1.2.3 -> 1.3.0): Medium - show change记录 Major (1.2.3 -> 2.0.0): High - show breaking changes
输出 格式化
Major 更新s: express 4.17.1 -> 5.0.0 [BREAKING changes] Minor 更新s: axios 0.21.1 -> 0.21.4 [Bug fixes] 补丁 更新s: 调试 4.3.1 -> 4.3.4 [Security 补丁]
更新 Strategy Show 报告 first - never 更新 blindly 更新 in stages: 补丁es -> minors -> majors 运行 tests after each 更新 Commit each 更新 separately