← All skills
Tencent SkillHub · Developer Tools

Catch My Skill

自动检测本地与线上 skill 版本差异 - 支持 ClawHub/GitHub,定期检查更新

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

自动检测本地与线上 skill 版本差异 - 支持 ClawHub/GitHub,定期检查更新

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, data/local.json, data/online.json, index.js

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

Catch My Skill

自动检测本地与线上 skill 版本差异

功能

📋 维护两个列表 本地 skill 列表(含版本) 线上 skill 列表(ClawHub + GitHub) ⏰ 定时检查 每半小时自动获取线上版本 对比本地与线上版本差异 🔔 版本告警 本地落后时提醒更新 支持手动触发检查

列表文件

文件说明data/local.json本地 skill 列表data/online.json线上 skill 列表

设计初衷

高粘性使用 - 只保留用户真正在用的 skills,避免装一堆不用的。

初始化流程

1. 首次运行 init ↓ 2. 自动获取线上所有 skills(ClawHub + GitHub) ↓ 3. 生成完整本地列表(含版本) ↓ 4. 用户删除不想要的 skill ↓ 5. 后续只跟踪保留下来的 skills

用户操作

# 首次初始化(从线上拉取全部) /catch-my-skill init # 删除不想要的 skill(减少跟踪) /catch-my-skill remove white-stone-mem # 添加回想跟踪的 skill /catch-my-skill add elegant-sync # 检查版本 /catch-my-skill check # 本地落后时自动更新(任选一个渠道) /catch-my-skill update elegant-sync

local.json

{ "skills": [ {"name": "white-stone-mem", "version": "1.0.0", "path": "~/.openclaw/skills/white-stone-mem"}, {"name": "elegant-sync", "version": "1.0.1", "path": "~/.openclaw/skills/elegant-sync"} ], "updated": "2026-02-28T16:00:00Z" }

online.json

{ "clawhub": [ {"name": "white-stone-mem", "version": "1.0.0", "owner": "russellfei"}, {"name": "elegant-sync", "version": "1.0.3", "owner": "russellfei"} ], "github": [ {"name": "minimax-mcp-call", "version": "1.0.0", "owner": "russellfei", "repo": "russellfei/minimax-mcp-call"} ], "updated": "2026-02-28T16:00:00Z" }

自动检查间隔

在 .backup.env 中配置: # 检查间隔(分钟),默认 30 分钟 CATCH_INTERVAL=30

GitHub 用户名

GITHUB_USERNAME=russellfei

工作流程

1. 定时触发(每30分钟) ↓ 2. 获取 ClawHub 线上版本(clawhub inspect) ↓ 3. 获取 GitHub 线上版本(gh api) ↓ 4. 对比本地版本 ↓ 5. 输出差异报告 ↓ 6. 本地落后 → 提醒更新

输出示例

=== Skill 版本检查 === 本地落后需更新: ⚠️ elegant-sync: 本地 1.0.1 < 线上 1.0.3 本地已是最新: ✅ white-stone-mem: 1.0.0 ✅ minimax-mcp-call: 1.0.0 线上新技能: (无)

定时任务

自动添加到 crontab: # 每30分钟检查 */30 * * * * node /path/to/catch-my-skill/index.js check >> /home/orangepi/.openclaw/logs/catch-my-skill.log 2>&1

安装

# 复制到 skills 目录 cp -r catch-my-skill ~/.openclaw/workspace/skills/ # 初始化 node index.js init

更新日志

2026-02-28: 初始版本

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Config1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • index.js Scripts
  • data/local.json Config
  • data/online.json Config