# Send Clawhub Manager 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": "clawhub-manager",
    "name": "Clawhub Manager",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/franklu0819-lang/clawhub-manager",
    "canonicalUrl": "https://clawhub.ai/franklu0819-lang/clawhub-manager",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawhub-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawhub-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "EXAMPLES.md",
      "README.md",
      "SECURITY.md",
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawhub-manager",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T17:43:17.575Z",
      "expiresAt": "2026-05-08T17:43:17.575Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawhub-manager",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawhub-manager",
        "contentDisposition": "attachment; filename=\"clawhub-manager-1.2.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawhub-manager"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clawhub-manager"
    },
    "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/clawhub-manager",
    "downloadUrl": "https://openagent3.xyz/downloads/clawhub-manager",
    "agentUrl": "https://openagent3.xyz/skills/clawhub-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawhub-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawhub-manager/agent.md"
  }
}
```
## Documentation

### ClawHub 管理技能

简化 ClawHub 技能的发布、删除、查询和搜索操作。

### 功能特性

✅ 发布技能 - 将本地技能发布到 ClawHub
✅ 删除技能 - 从 ClawHub 删除已发布的技能
✅ 查询技能 - 查看技能的详细信息和统计数据
✅ 搜索技能 - 在 ClawHub 上搜索技能
✅ 列出技能 - 列出本地已安装的技能

### 查询技能信息

# 查询技能详情
bash /root/.openclaw/workspace/skills/clawhub-manager/scripts/inspect.sh feishu-voice

# 查询技能统计（JSON 格式）
bash /root/.openclaw/workspace/skills/clawhub-manager/scripts/inspect.sh feishu-voice --json

### 搜索技能

# 搜索技能（关键词）
bash /root/.openclaw/workspace/skills/clawhub-manager/scripts/search.sh "feishu"

# 搜索技能（限制结果数量）
bash /root/.openclaw/workspace/skills/clawhub-manager/scripts/search.sh "pdf" --limit 10

### 列出本地技能

# 列出所有已安装的技能
bash /root/.openclaw/workspace/skills/clawhub-manager/scripts/list.sh

### 发布技能

# 发布技能（指定版本）
bash /root/.openclaw/workspace/skills/clawhub-manager/scripts/publish.sh \\
  /root/.openclaw/workspace/skills/your-skill \\
  --version 1.0.0 \\
  --changelog "首次发布"

# 发布技能（指定 slug 和名称）
bash /root/.openclaw/workspace/skills/clawhub-manager/scripts/publish.sh \\
  /root/.openclaw/workspace/skills/your-skill \\
  --slug your-slug \\
  --name "Your Skill Name" \\
  --version 1.0.0

### 删除技能

# 删除技能
bash /root/.openclaw/workspace/skills/clawhub-manager/scripts/delete.sh your-slug

### 使用场景

📦 批量管理 - 一次性管理多个技能的发布和删除
📊 数据统计 - 查看技能的下载量、安装量等统计数据
🔍 技能发现 - 搜索和发现有用的技能
🔄 版本管理 - 轻松发布新版本和更新技能

### 技能统计输出示例

{
  "name": "Feishu Voice",
  "slug": "feishu-voice",
  "downloads": 19,
  "installs": 1,
  "stars": 0,
  "versions": 2,
  "updated": "2026-02-21 16:45"
}

### 🔒 安全注意事项

发布技能前，请确保：

✅ 不在技能文件中硬编码任何密钥

所有 API Key、Secret、Token 必须使用环境变量
使用占位符（如 YOUR_API_KEY_HERE）



✅ 敏感信息存储在环境变量中
# ✅ 正确：从环境变量读取
API_KEY="${API_KEY}"

# ❌ 错误：硬编码密钥
API_KEY="tvly-YOUR_REAL_KEY_HERE"



✅ .env 文件已添加到 .gitignore

防止敏感配置被提交到版本控制



✅ 发布前会自动进行安全扫描

脚本会自动检测常见密钥泄露
发现问题会阻止发布并提示修复

### 安全扫描功能

publish.sh 内置安全扫描，会自动检测：

🔑 API 密钥: Tavily (tvly-), OpenAI (sk-), GitHub (ghp_, gho_, ghu_, ghs_), Perplexity (pplx-), Exa (exa_)
🔐 App Secret: 检测 app_secret=, app-secret= 等模式
🎫 Access Token: 检测 access_token=, access-token= 等模式
📁 敏感文件: .env, .secrets, *.key, *.pem
🔧 环境变量硬编码: 检测 export API_KEY=, export SECRET= 等

### 手动安全检查

发布前也可以手动运行检查：

# 检查常见密钥格式
grep -r "tvly-\\|sk-\\|ghp_\\|pplx-\\|exa_" \\
  --include="*.md" --include="*.sh" \\
  --include="*.py" --include="*.js"

# 检查通用密钥模式
grep -ri "api[_-]?key\\s*[=:]" \\
  --include="*.sh" --include="*.py"

### 如果发现密钥泄露

⚠️ 立即撤销已泄露的密钥
🔁 重新生成新的密钥
📝 替换为占位符（如 YOUR_API_KEY_HERE）
🧹 从 Git 历史中清除（如果已提交）

### 跳过安全扫描（不推荐）

# ⚠️ 仅在测试环境使用
bash publish.sh /path/to/skill --version 1.0.0 --skip-security

### 注意事项

权限要求

发布和删除技能需要登录 ClawHub
只能删除自己发布的技能



版本号规范

遵循语义化版本（Semantic Versioning）
格式：MAJOR.MINOR.PATCH（如 1.0.0）



slug 命名

只能包含小写字母、数字和连字符
一旦发布不能修改



速率限制

ClawHub 可能有 API 速率限制
大量操作时建议添加延迟

### 作者

franklu0819-lang

### 许可证

MIT
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: franklu0819-lang
- Version: 1.2.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T17:43:17.575Z
- Expires at: 2026-05-08T17:43:17.575Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawhub-manager)
- [Send to Agent page](https://openagent3.xyz/skills/clawhub-manager/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawhub-manager/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawhub-manager/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawhub-manager)