openclaw-guide
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseOpenClaw Guide
OpenClaw 指南
OpenClaw is a messaging gateway that connects AI agents to 24+ communication platforms. This skill is the reference for everything after the bot is installed — channels, use cases, memory, cron, MCP, OAuth, troubleshooting.
Current production version assumed: 2026.5.x (latest 2026.4.x is also fully covered).
Official docs: https://docs.openclaw.ai/ · Source: https://github.com/openclaw/openclaw
OpenClaw是一款可将AI agents连接至24+个通讯平台的消息网关。本技能是机器人安装完成后所有操作的参考手册——涵盖通道、用例、内存、定时任务(cron)、MCP、OAuth、故障排查等内容。
**当前假定生产版本:**2026.5.x(最新的2026.4.x版本也完全适用)。
**官方文档:**https://docs.openclaw.ai/ · **源码:**https://github.com/openclaw/openclaw
Setup (install OpenClaw first)
配置(先安装OpenClaw)
This skill is consultation-only. If the user doesn't have an OpenClaw bot yet, install both skills together and run the companion wizard:
bash
npx skills add CodeAlive-AI/ceo-ai-os@install-openclaw-to-yc -g
npx skills add CodeAlive-AI/ceo-ai-os@openclaw-guide -gThen tell the agent: "install OpenClaw on Yandex Cloud Kazakhstan". The skill takes over and uses this one for any post-install consultation.
install-openclaw-to-ycFor other hosts (local Mac, GCP, AWS, bare metal) the OpenClaw upstream documentation at https://docs.openclaw.ai/start/getting-started is the canonical guide — no CEO AI OS wizard exists for them yet.
本技能仅提供咨询服务。如果用户尚未拥有OpenClaw机器人,请同时安装以下两个技能并运行配套向导:
bash
npx skills add CodeAlive-AI/ceo-ai-os@install-openclaw-to-yc -g
npx skills add CodeAlive-AI/ceo-ai-os@openclaw-guide -g然后告知代理:“在Yandex Cloud哈萨克斯坦节点安装OpenClaw”。技能将接管安装流程,并在安装完成后通过本技能提供后续咨询服务。
install-openclaw-to-yc对于其他主机(本地Mac、GCP、AWS、裸金属服务器),请参考OpenClaw官方上游文档https://docs.openclaw.ai/start/getting-started——目前暂无CEO AI OS向导支持这些环境。
How to read this skill
如何使用本技能
The full content is split across nine reference files. Read only the one that matches the user's current question — bringing all of them into context wastes the budget.
| If the user asks about… | Read |
|---|---|
| Agent runtime, bootstrap files, sessions, message flow, chat commands, skills | |
| MEMORY.md, daily notes, dreaming, memory backends, embedding providers, sync safety | |
| Cron jobs (add / list / rm), heartbeat, scheduled tasks, timezones, delivery flags | |
MCP servers (Exa, PostHog, Grafana, …), | |
| |
OAuth re-auth ( | |
| Use cases — morning brief, research workflows, competitive radar, decision playbook, email handler, meeting prep | |
| Channels — Telegram details, adding Discord / Slack / WhatsApp / iMessage | |
CodeAlive search inside the bot — | |
完整内容分为九个参考文件。请仅阅读与用户当前问题匹配的文件——加载全部文件会浪费预算。
| 用户咨询内容… | 阅读对应文件 |
|---|---|
| Agent运行时、引导文件、会话、消息流、聊天命令、技能 | |
| MEMORY.md、每日笔记、梦境模式、内存后端、嵌入提供商、同步安全性 | |
| 定时任务(添加/列出/删除)、心跳、调度任务、时区、投递标记 | |
MCP服务器(Exa、PostHog、Grafana等)、 | |
| |
OAuth重新授权( | |
| 用例——早报、研究工作流、竞争雷达、决策手册、邮件处理、会议准备 | |
| 通道——Telegram详情、添加Discord/Slack/WhatsApp/iMessage | |
机器人内置CodeAlive搜索—— | |
Critical pitfalls (always cross-check before infrastructure changes)
关键陷阱(基础设施变更前务必交叉检查)
These are the recurring footguns. Read this table before any planned restart, OAuth re-auth, cron edit, or schema change.
| # | Title | When it bites |
|---|---|---|
| 1 | Isolated cron sessions can't deliver to Telegram | Use |
| 2 | Telegram adapter silently dies after ~12h | Watchdog timer restarts gateway on outbound errors |
| 6 | Gateway auth handshake timeout on small VMs | |
| 7 | Bootstrap file truncation drops the middle | Keep individual files compact; truncation = 70% head + 20% tail |
| 14 | | All cron CLI work |
| 18 | Cron jobs without explicit | Always set explicitly |
| 19 | Exec approval blocked when no Telegram approver | |
| 20 | | Stop timer → restart → wait |
| 21 | | Backup config first; correct path is |
| 22 | | Run |
| 23 | OAuth re-auth leaves orphan profiles | Decode |
Full numbered list with workarounds lives in the CEO AI OS workspace repo at . When a new pitfall surfaces, add it there — single source of truth.
OPENCLAW_PITFALLS.md以下是常见的易踩坑点。在计划重启、OAuth重新授权、定时任务编辑或schema变更前,请阅读本表。
| # | 标题 | 触发场景 |
|---|---|---|
| 1 | 孤立定时任务会话无法向Telegram投递消息 | 使用 |
| 2 | Telegram适配器约12小时后会静默崩溃 | 启用看门狗定时器,在出站错误时重启网关 |
| 6 | 小型VM上网关认证握手超时 | 在环回接口上设置 |
| 7 | 引导文件截断会丢失中间内容 | 保持单个文件精简;截断规则为保留70%头部+20%尾部 |
| 14 | | 所有定时任务CLI操作 |
| 18 | 未显式设置 | 务必显式设置超时时间 |
| 19 | 无Telegram审批人时执行审批被阻止 | 在无头服务器上设置 |
| 20 | | 先停止定时器→重启网关→等待 |
| 21 | | 先备份配置;正确路径为 |
| 22 | 从 | 先执行 |
| 23 | OAuth重新授权会留下孤立配置文件 | 解码 |
完整带解决方案的编号列表可在CEO AI OS工作区仓库的中查看。当发现新的陷阱时,请添加至该文件——作为唯一可信来源。
OPENCLAW_PITFALLS.mdUpstream documentation index (quick links)
上游文档索引(快速链接)
These are direct URLs into docs.openclaw.ai for occasions when this skill's references don't cover a feature. Prefer this skill's references first — they're tuned for the workshop / personal CEO bot context.
当本技能的参考文件未覆盖某功能时,可直接访问docs.openclaw.ai的以下链接。优先使用本技能的参考文件——它们针对工作坊/个人CEO机器人场景进行了优化。
Getting started
入门指南
| Topic | URL |
|---|---|
| Getting Started | https://docs.openclaw.ai/start/getting-started |
| Onboarding Wizard | https://docs.openclaw.ai/start/wizard |
| Documentation Hub | https://docs.openclaw.ai/start/hubs |
| DM/Node Pairing | https://docs.openclaw.ai/start/pairing |
Gateway & configuration
网关与配置
| Topic | URL |
|---|---|
| Gateway Runbook | https://docs.openclaw.ai/gateway |
| Configuration | https://docs.openclaw.ai/gateway/configuration |
| Authentication | https://docs.openclaw.ai/gateway/authentication |
| Sandboxing | https://docs.openclaw.ai/gateway/sandboxing |
| Security | https://docs.openclaw.ai/gateway/security |
| Troubleshooting | https://docs.openclaw.ai/gateway/troubleshooting |
Channels
通道
Core concepts
核心概念
Tools, automation, install
工具、自动化、安装
| Topic | URL |
|---|---|
| Skills | https://docs.openclaw.ai/tools/skills |
| Plugin System | https://docs.openclaw.ai/tools/plugin |
| Cron Jobs | https://docs.openclaw.ai/automation/cron-jobs |
| Hooks | https://docs.openclaw.ai/automation/hooks |
| Webhooks | https://docs.openclaw.ai/automation/webhook |
| Docker install | https://docs.openclaw.ai/install/docker |
| CLI Reference | https://docs.openclaw.ai/cli |
Companion skill (required at install time)
配套技能(安装时必需)
install-openclaw-to-ycbash
npx skills add CodeAlive-AI/ceo-ai-os@install-openclaw-to-yc -gThe two skills cross-reference: runs the bootstrap and hands off to this guide for everything after. This guide assumes the bot is already up and walks the user through configuration, channels, use cases, and operations.
install-openclaw-to-ycinstall-openclaw-to-ycbash
npx skills add CodeAlive-AI/ceo-ai-os@install-openclaw-to-yc -g两个技能相互关联:负责引导安装流程,之后将所有后续操作移交至本指南。本指南假定机器人已启动运行,将引导用户完成配置、通道、用例和运维操作。
install-openclaw-to-yc