openclaw-docs

作者 yeuxuan

OpenClaw 中文文档站 | AI 智能体框架 源码剖析 安装教程 | WhatsApp Telegram Discord 飞书 多通道机器人

746
Stars
110
Forks
JavaScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/yeuxuan/openclaw-docs

快速入门

使用 openclaw-docs 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

OpenClaw 中文文档 | 保姆级教程 · 源码剖析 · AI 智能体框架

OpenClaw 是自托管的多通道 AI 助手平台,通过 Gateway 统一连接 Web 控制 UI、聊天通道、节点、工具和模型。本仓库是面向中文读者的教程站,目标是把官方最新架构讲到足够清楚:先让新手能跑起来,再带开发者看懂源码。

在线文档 VitePress License Azure

📖 立即在线阅读 → openclaw-docs.dx3n.cn


📚 文档覆盖范围

本文档站包含 767 篇中文教程,分为 4 条学习主线:

主线内容覆盖篇数链接
Track 0 安装教程零基础照着做、快速安装、onboard、Web 控制 UI、节点、AI 服务商接入、通道接入、Gateway 运维、常见问题排查680 篇→ 教程中心
Track A 完整工程主线CLI 启动框架、Gateway 控制平面、插件与通道适配器、节点、路由与会话键、Agent 执行链路、函数级源码剖析62 篇→ 工程主线
Track B AI 核心框架上下文工程、Agent 状态机、工具策略与审批、模型回退、记忆系统、Hook 插件注入机制24 篇→ AI 框架
Track C 通道适配器接口合同、注册链路、账号生命周期、入站路由、出站发送解耦含于 Track A→ 适配器索引

🤖 OpenClaw 是什么?

OpenClaw 是一款开源的个人 AI 助手平台,让你的 AI 助手运行在你自己的电脑或服务器上,并通过浏览器、聊天软件和移动节点为你工作。

支持的聊天平台

WhatsApp · Telegram · Discord · Slack · Signal · iMessage / BlueBubbles · 飞书(Feishu) · Mattermost · Google Chat · Microsoft Teams · Matrix · LINE · Zalo · QQ · WeChat · IRC · Nostr · Twitch · WebChat

支持的 AI 模型

Anthropic Claude · OpenAI GPT · DeepSeek · 通义千问(Qwen) · Kimi(月之暗面) · 智谱 GLM · MiniMax · Ollama(本地大模型) · OpenRouter · LiteLLM · Cloudflare AI Gateway · Vercel AI Gateway · NVIDIA · Together AI · HuggingFace · vLLM · SGLang


🚀 快速开始(本地运行文档站)

git clone https://github.com/yeuxuan/openclaw-docs.git
cd openclaw-docs
npm install
npm run docs:dev

打开终端输出的本地地址即可预览完整文档站。

npm run docs:build    # 构建静态产物到 docs/.vitepress/dist/
npm run docs:preview  # 本地预览构建结果

📁 仓库结构

openclaw-docs/
├── docs/
│   ├── index.md                            # 首页
│   ├── tutorials/                          # Track 0:安装教程(680 篇)
│   │   ├── getting-started/                #   快速入门与向导安装
│   │   ├── installation/                   #   Docker / Node / 云服务器部署
│   │   ├── gateway/                        #   Gateway 配置与运维
│   │   ├── channels/                       #   通道接入(Telegram/WhatsApp/Discord 等)
│   │   ├── providers/                      #   AI 模型 Provider 配置
│   │   ├── concepts/                       #   核心概念(上下文/记忆/状态机等)
│   │   ├── tools/                          #   工具系统(浏览器/执行/技能/子智能体)
│   │   ├── plugins/                        #   插件专题(Manifest/SDK/Hooks/扩展)
│   │   ├── cli/                            #   CLI 命令专题
│   │   ├── reference/                      #   参考资料专题
│   │   ├── platforms/                      #   平台支持(macOS/Windows/Linux/移动端/VPS)
│   │   ├── diagnostics/                    #   诊断专题
│   │   ├── plan/                           #   架构计划与维护者设计草案
│   │   ├── web/                            #   Web 控制 UI
│   │   ├── nodes/                          #   移动节点与远程节点
│   │   ├── automation/                     #   自动化(Webhook/Cron/Poll)
│   │   └── help/                           #   故障排查与常见问题
│   ├── beginner-openclaw-guide/            # Track A:完整工程主线(62 篇)
│   └── beginner-openclaw-framework-focus/  # Track B:AI 核心框架(24 篇)
├── docs/.vitepress/
│   ├── config.mts                          # 站点配置(SEO / 导航 / 侧边栏)
│   └── theme/                             # 自定义主题与样式
└── scripts/
    ├── convert-mdx.mjs                     # MDX → VitePress Markdown 批量转换
    └── ping-indexnow.mjs                   # 构建后自动推送 URL 到 Bing IndexNow

✨ 文档特点

  • 函数级精度:关键模块精确到具体函数的源码入口与调用链路
  • 保姆级讲解:先讲人话,再讲术语,零基础也能跟着跑起来
  • 可直接复刻:每个核心能力都给出落地步骤,可直接用于自己的项目
  • 持续更新:跟随 OpenClaw 版本迭代,覆盖最新 API 与配置方式
  • SEO 完备:767 页独立 description、sitemap、IndexNow 自动推送

🔗 相关链接


⭐ Star History

Star History Chart

常见问题

What is openclaw-docs?

openclaw-docs is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by yeuxuan. OpenClaw 中文文档站 | AI 智能体框架 源码剖析 安装教程 | WhatsApp Telegram Discord 飞书 多通道机器人. It has 746 GitHub stars.

Is openclaw-docs safe to use?

openclaw-docs returned warnings in SkillsLLM's automated security scan. It has no critical vulnerabilities, but review the flagged issues in the Security Report section before adding it to your workflow.

How do I install openclaw-docs?

Clone the repository with "git clone https://github.com/yeuxuan/openclaw-docs" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is openclaw-docs written in?

openclaw-docs is primarily written in JavaScript. It is open-source under yeuxuan on GitHub, so you can review or fork the full source.

Are there alternatives to openclaw-docs?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh openclaw-docs against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情