← All skills
Tencent SkillHub · Developer Tools

OpenClaw Helper

OpenClaw 部署与故障排查速查表,提供9阶段部署导航、常见错误解决方案和日志关键字说明

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

OpenClaw 部署与故障排查速查表,提供9阶段部署导航、常见错误解决方案和日志关键字说明

⬇ 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
SKILL.md

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. 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. 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 14 sections Open source page

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 前缀

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
1 Docs
  • SKILL.md Primary doc