# Send Catch My Skill to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "catch-my-skill",
    "name": "Catch My Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/russellfei/catch-my-skill",
    "canonicalUrl": "https://clawhub.ai/russellfei/catch-my-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/catch-my-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=catch-my-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "data/local.json",
      "data/online.json",
      "index.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/catch-my-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/catch-my-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/catch-my-skill",
    "agentUrl": "https://openagent3.xyz/skills/catch-my-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/catch-my-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/catch-my-skill/agent.md"
  }
}
```
## Documentation

### 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: 初始版本
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: russellfei
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/catch-my-skill)
- [Send to Agent page](https://openagent3.xyz/skills/catch-my-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/catch-my-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/catch-my-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/catch-my-skill)