自托管多通道 AI 网关 — 将 WhatsApp、Telegram、Discord、飞书等聊天应用连接到你的 AI 助手
为什么选择 OpenClaw?
一个网关支持 WhatsApp、Telegram、Discord、飞书等多个聊天平台,统一管理,轻松切换。
运行在你自己的硬件上,数据完全可控,无需依赖第三方服务,保护隐私安全。
支持多个隔离的 AI 代理,可根据通道、用户或场景自动路由到不同的工作区。
内置浏览器自动化、文件操作、代码执行、网络搜索等工具,扩展 AI 能力边界。
iOS 和 Android 节点配对,Canvas 支持,随时随地与 AI 助手交互。
基于 WebSocket 的低延迟通信,消息即时送达,对话流畅自然。
连接你常用的聊天平台
5 分钟完成部署
curl -fsSL https://openclaw.ai/install.sh | bash
openclaw onboard --install-daemon
openclaw gateway --port 18789
openclaw channels login
简单的 JSON5 配置文件
// ~/.openclaw/openclaw.json { "agents": { "defaults": { "workspace": "~/.openclaw/workspace", "model": { "primary": "anthropic/claude-sonnet-4-5", "fallbacks": ["openai/gpt-5.2"] } } }, "channels": { "feishu": { "enabled": true, "appId": "cli_xxxxxxxxxxxxx", "appSecret": "xxxxxxxxxxxxxxxx", "dmPolicy": "pairing" }, "telegram": { "enabled": true, "botToken": "123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11" }, "whatsapp": { "enabled": true, "dmPolicy": "pairing", "allowFrom": ["+8613800138000"] } }, "session": { "dmScope": "per-channel-peer", "reset": { "mode": "daily", "atHour": 4 } } }