# Send OpenClaw Helper 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-helper",
    "name": "OpenClaw Helper",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mwangxiang/openclaw-helper",
    "canonicalUrl": "https://clawhub.ai/mwangxiang/openclaw-helper",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-helper",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-helper",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-helper",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T11:07:42.155Z",
      "expiresAt": "2026-05-13T11:07:42.155Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-helper",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-helper",
        "contentDisposition": "attachment; filename=\"openclaw-helper-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-helper"
      },
      "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/openclaw-helper"
    },
    "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/openclaw-helper",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-helper",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-helper/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-helper/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-helper/agent.md"
  }
}
```
## Documentation

### OpenClaw 部署与故障排查

快速查询 OpenClaw 部署步骤和错误解决方案。

### 触发词

用户询问以下内容时启动本 skill：

OpenClaw 部署、安装、配置
OpenClaw 报错、故障、不回复、连不上
"openclaw 怎么..." / "小龙虾报错"

### 部署导航（九阶段）

阶段内容关键验证1服务器购买与初始访问能看到 root@主机名 提示符2SSH 免密登录配置ssh root@IP "echo ok" 无需密码3服务器环境确认openclaw --version 输出版本号4配置 AI 模型（models.providers）providers 列表非空，primary model 已设置5飞书应用创建获得 App ID（cli_ 开头）和 App Secret6飞书通道配置（服务器端）channels.feishu.enabled=true，凭证已设置7飞书权限与事件订阅im:message 等权限已开通，版本已上线8重启网关与端到端测试机器人成功回复消息9安装 Claude Code（可选）claude --version 输出版本号

### 远程执行前缀（必需）

export NVM_DIR=/root/.nvm; . "$NVM_DIR/nvm.sh";

### 配置 AI 模型（阶段4）

ssh root@<IP> 'export NVM_DIR=/root/.nvm; . "$NVM_DIR/nvm.sh"; openclaw config set "models.providers.<名称>" --json "{
  \\"baseUrl\\": \\"<代理地址>\\",
  \\"apiKey\\": \\"<API_Key>\\",
  \\"api\\": \\"anthropic-messages\\",
  \\"models\\": [{
    \\"id\\": \\"claude-sonnet-4-6\\",
    \\"name\\": \\"Claude Sonnet 4.6\\",
    \\"reasoning\\": true,
    \\"input\\": [\\"text\\", \\"image\\"],
    \\"contextWindow\\": 200000,
    \\"maxTokens\\": 32000
  }]
}"'

### 设置主模型

ssh root@<IP> 'export NVM_DIR=/root/.nvm; . "$NVM_DIR/nvm.sh"; openclaw config set "agents.defaults.model.primary" "<名称>/claude-sonnet-4-6"'

### 配置飞书通道（阶段6）

ssh root@<IP> 'export NVM_DIR=/root/.nvm; . "$NVM_DIR/nvm.sh"; openclaw config set "channels.feishu" --json "{
  \\"enabled\\": true,
  \\"domain\\": \\"feishu\\",
  \\"groupPolicy\\": \\"open\\",
  \\"appId\\": \\"<App_ID>\\",
  \\"appSecret\\": \\"<App_Secret>\\"
}"'

### 重启网关（阶段8）

ssh root@<IP> 'systemctl --user restart openclaw-gateway.service'

### 查看日志

ssh root@<IP> 'journalctl --user -u openclaw-gateway.service --no-pager -n 30'

### 飞书相关

错误现象可能原因解决方案机器人收到消息但不回复models 未配置执行阶段4配置 models.providers日志显示 99991672飞书 API 权限不足飞书开放平台添加 im:message 等权限并重新发布"应用未建立长连接"appId/appSecret 未正确写入凭证必须写入 channels.feishu，不是环境变量飞书连接后秒断Encrypt Key/Verification Token 不匹配核对飞书开放平台的加密策略搜索不到机器人应用未发布创建版本并发布

### 模型相关

错误现象可能原因解决方案"No API key found for provider"models.providers 为空执行阶段4配置模型"Embedded agent failed"API Key 无效或代理地址错误检查 baseUrl 和 apiKey模型回复乱码/格式错误api 字段选错Anthropic 用 anthropic-messages，OpenAI 用 openai-responses"must NOT have additional properties"配置字段名错误删除无效字段HTTP 404: Invalid URL /v1/v1/messagesbaseUrl 多了 /v1baseUrl 填 https://域名，不加 /v1

### 服务相关

错误现象可能原因解决方案网关启动失败配置文件 JSON 语法错误node -e "JSON.parse(require('fs').readFileSync('/root/.openclaw/openclaw.json'))"网关启动超时被禁用的插件仍在尝试连接禁用不需要的插件SSH 远程命令 node 找不到nvm 未加载命令前加远程执行前缀

### 日志关键字

关键字含义agent model: xxx/xxx模型配置已识别feishu[default]: WebSocket client started飞书连接成功[ws] ws client readyWebSocket 就绪listening on ws://0.0.0.0:18789网关正在监听received message from消息已收到Embedded agent failed模型调用失败Access denied + 99991672飞书权限不足No API key foundmodels.providers 配置有误

### 使用说明

先确认用户在哪个阶段或遇到什么错误
提供对应的命令模板或解决方案
所有远程命令都需要加 nvm 前缀
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mwangxiang
- Version: 1.0.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-06T11:07:42.155Z
- Expires at: 2026-05-13T11:07:42.155Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-helper)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-helper/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-helper/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-helper/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-helper)