Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

skill-upgrade-checker技能升级检查器

Agent Skill

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

总安装

7,912

周安装

317

GitHub Stars

公开资料未说明

下载量

2,561
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:skill-upgrade-checker(技能升级检查器)
来源仓库:https://github.com/zhaowh3613/skill-upgrade-checker
安装命令:
openclaw skills install skill-upgrade-checker
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skill-upgrade-checker

简介

检查所有已安装技能的可用升级,解释版本变更与风险。

  • 在用户确认后执行升级,保障技能生态一致性。
  • 支持批量扫描与详细更新日志展示。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 需具备技能仓库读取与写入权限方可生效。
  • skill-upgrade-checker 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
skill-upgrade-checker
description
Check all installed skills for available upgrades, interpret version changes and risk, and execute upgrades with user confirmation. | 检查所有已安装技能的可用升级,解读版本变更与风险,经用户确认后执行升级

Skill Upgrade Checker

Primary role: Scan all installed skills for available upgrades, interpret version differences and changelogs, assess upgrade risk, and execute upgrades after explicit user confirmation.

主要职责: 扫描所有已安装技能的可用升级,解读版本差异与变更日志,评估升级风险,经用户明确确认后执行升级。

Prerequisites

Before this skill can operate, confirm the following:

  • clawhub CLI is installed and available in the agent's PATH. This skill issues clawhub list, clawhub search, and clawhub update commands. If the binary is absent, all operations will fail.
  • Authentication: Run clawhub login in advance. The clawhub CLI stores credentials in its own default config path (managed by the CLI, not by this skill). No additional environment variables are required by this skill.
  • Permissions in scope: This skill will only:

1. Read the installed skill list via clawhub list (read-only). 2. Search the registry for latest versions via clawhub search <skill> (read-only). 3. Run clawhub update <skill>only after explicit user confirmation at the Pre-Upgrade Gate (Step 6). It will not access other system files, credentials, or APIs beyond the clawhub CLI.

Workflow

0) Inventory Installed Skills

Run clawhub list and parse the output to build a table of all installed skills with their local version numbers.

Additionally, read each skill's _meta.json (at skills/<skill-slug>/_meta.json) if accessible locally, to get the precise semver from the version field.

Output: a list of installed skills with their local versions.

1) Query Registry for Latest Versions

For each installed skill, run:

clawhub search <skill-slug>

Build a comparison table with columns:

  • Skill name
  • Local version
  • Registry version
  • Upgrade available (yes / no / unknown)

If clawhub search does not return version info for a particular skill (e.g., it is a local-only skill not published to any registry), mark it as "version unknown — skipped".

2) Version Comparison and Classification

Apply semver comparison to each skill where an upgrade is available. Classify into:

  • Patch (e.g., 0.2.1 → 0.2.2): bug fixes only, low risk
  • Minor (e.g., 0.2.x → 0.3.0): new features, backward-compatible, medium risk
  • Major (e.g., 0.x → 1.0 or 1.x → 2.0): potential breaking changes, high risk

Edge cases:

  • Local version higher than registry → mark as "local version ahead" and skip
  • Versions equal → mark as "up to date"

Present a summary table sorted by risk level (major first).

3) Changelog and Diff Interpretation

For each skill with an available upgrade, gather change information in this priority order:

  1. Project-level CHANGELOG: Check skills/CHANGELOG.md for entries between the current and latest version.
  2. Per-skill CHANGELOG: Check skills/<skill-slug>/CHANGELOG.md if it exists (more specific).
  3. Description diff: Compare the description field in local _meta.json with the description returned by clawhub search. Changes in description may hint at capability changes.
  4. Fallback: If no changelog data is available from any source, state: "No changelog available — manual review recommended before upgrade."

Summarize changes per skill:

  • Added: new capabilities
  • Changed: behavior modifications
  • Fixed: bug fixes
  • Breaking: incompatible changes (flag prominently)

4) Risk Assessment

For each upgradeable skill, produce a risk rating using these criteria:

DimensionLOWMEDIUMHIGHCRITICAL
Version jumpPatch onlyMinorMajorMajor with breaking keywords
Breaking change signalsNone found"changed", "refactored""deprecated""breaking", "removed", "incompatible"
Dependency impactNo other skill depends on it1 skill depends2+ skills dependCore dependency for many skills
Version staleness< 1 month behind1–3 months3–6 months> 6 months behind
Adoption signalsHigh install countModerateLow (< 10)Very new (< 2 weeks) or unknown

Combine dimensions into an overall rating: LOW / MEDIUM / HIGH / CRITICAL.

5) Upgrade Recommendations

Present a prioritized recommendation list, grouped into four tiers:

  • Recommended to upgrade now (推荐立即升级): low-risk patches and well-established minor updates
  • Upgrade with caution (谨慎升级): minor updates with some risk signals
  • Review before upgrade (升级前需审查): major updates or high-risk changes
  • Skip (跳过): not worth upgrading, risk outweighs benefit, or local version ahead

Include a one-line rationale per skill.

6) Pre-Upgrade Confirmation Gate (required)

Before executing any upgrade, present a confirmation summary listing:

  • Each skill to be upgraded
  • From-version → to-version
  • Upgrade type (patch / minor / major)
  • Risk rating
  • One-line change summary
  • The exact clawhub update <skill> command to be run

Then ask:

"Planned action: upgrade N skill(s). Confirm which to proceed with — respond with skill names, 'all', or 'none'."

Major upgrade extra gate: Even if the user responds with "all", major-version upgrades require individual confirmation per skill. Re-prompt for each major upgrade separately with a clear warning about potential breaking changes.

7) Execute Upgrades and Post-Upgrade Report

For each confirmed skill, in sequence:

  1. Run clawhub update <skill-slug>
  2. Verify success by re-running clawhub list and checking the new version
  3. If any upgrade fails, stop and report the failure — do not continue blindly

Final output:

Upgrade Results Table:

SkillOld VersionNew VersionStatus
.........Success / Failed

Post-Upgrade Summary:

  • Updated skill inventory (full list with current versions)
  • Any failures with error details and suggested next steps
  • Follow-up suggestion: "Re-run this check periodically to stay current."

Output Format

Upgrade Overview Table

SkillLocal VersionLatest VersionUpgrade TypeRisk Level

Change Summary (per skill)

  • Added: ...
  • Changed: ...
  • Fixed: ...
  • Breaking: ...

Recommendation List

Grouped by tier (Recommended / Caution / Review / Skip) with one-line rationale.

Pre-Upgrade Confirmation

"Planned action: upgrade <N> skill(s). Source: clawhub. Risks: <summary>. Proceed with: <skill list / all / none>?"

Upgrade Results

| Skill | Old Version | New Version | Status |

Guardrails

  • Never upgrade without explicit user confirmation.
  • Major-version upgrades require individual confirmation even if user says "all".
  • If an upgrade fails, stop and report — do not continue blindly.
  • Audit first, act second — Steps 0–5 are entirely read-only.
  • If local version is ahead of registry, skip and note it — never downgrade.
  • If no changelog is available, recommend manual review before proceeding.
  • Prefer conservative risk ratings — when uncertain, rate higher rather than lower.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.73%
按下载量换算2,196

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills