Appearance
其他渠道
除主流渠道外,OpenClaw 还支持以下渠道,大多数需要通过插件安装。
插件安装方式
bash
openclaw plugins install @openclaw/<插件名>Signal
状态:生产就绪,通过 signal-cli 接入,注重隐私。
要求:需要在 Gateway 主机上安装 signal-cli。
json5
{
channels: {
signal: {
enabled: true,
dmPolicy: "allowlist",
allowFrom: ["+15551234567"],
},
},
}配对方式:
bash
openclaw channels login --channel signalSignal 支持端对端加密。Agent 回复也通过 signal-cli 发送,保持完整的端到端加密链路。
iMessage(via BlueBubbles)
推荐方式:使用 BlueBubbles macOS 服务器,而非旧版 imsg CLI。
安装插件:
bash
openclaw plugins install @openclaw/bluebubbles功能支持:编辑消息、撤回消息、iMessage 效果、表情回应、群组管理。
注意:在 macOS 26 Tahoe 上,编辑消息功能目前存在问题(已知 Bug)。
json5
{
channels: {
bluebubbles: {
enabled: true,
serverUrl: "http://localhost:1234",
password: "your-password",
allowFrom: ["user@example.com"],
},
},
}旧版 iMessage(imsg CLI)已废弃,新安装建议使用 BlueBubbles。
Google Chat
状态:通过 Google Chat API(HTTP Webhook)接入。
json5
{
channels: {
googlechat: {
enabled: true,
dmPolicy: "allowlist",
allowFrom: ["user@example.com"],
},
},
}需要在 Google Cloud Console 中创建 Google Chat 应用并配置 Webhook URL。
Matrix
状态:通过插件支持,需单独安装。
bash
openclaw plugins install @openclaw/matrixMatrix 是去中心化的开放消息协议,支持自托管服务器(如 Synapse)。
json5
{
channels: {
matrix: {
enabled: true,
homeserver: "https://matrix.example.com",
accessToken: "your-token",
userId: "@bot:example.com",
dmPolicy: "allowlist",
allowFrom: ["@user:example.com"],
},
},
}Mattermost
状态:通过插件支持,Bot API + WebSocket 接入。
bash
openclaw plugins install @openclaw/mattermostMattermost 是开源的 Slack 替代品,支持私有部署。
json5
{
channels: {
mattermost: {
enabled: true,
serverUrl: "https://mattermost.example.com",
botToken: "your-token",
dmPolicy: "pairing",
},
},
}Microsoft Teams
状态:通过 Bot Framework 支持,适合企业场景,需单独安装。
bash
openclaw plugins install @openclaw/msteams需要在 Azure 中注册 Bot 应用,并配置 Teams 应用清单。
IRC
状态:内置支持,经典 IRC 协议,支持频道和私信。
json5
{
channels: {
irc: {
enabled: true,
server: "irc.libera.chat",
port: 6697,
tls: true,
nick: "openclaw-bot",
channels: ["#my-channel"],
dmPolicy: "allowlist",
allowFrom: ["trusted_nick"],
},
},
}Nextcloud Talk
状态:通过插件支持,自托管聊天。
bash
openclaw plugins install @openclaw/nextcloud-talkLINE
状态:通过插件支持,LINE Messaging API。
bash
openclaw plugins install @openclaw/lineSynology Chat
状态:通过插件支持,Synology NAS 聊天。
bash
openclaw plugins install @openclaw/synology-chat通过传入/传出 Webhook 接入 Synology Chat。
Nostr
状态:通过插件支持,去中心化消息协议(NIP-04)。
bash
openclaw plugins install @openclaw/nostrTwitch
状态:通过插件支持,Twitch 聊天室(IRC 连接)。
bash
openclaw plugins install @openclaw/twitchZalo
状态:通过插件支持,越南主流即时通讯软件。
bash
openclaw plugins install @openclaw/zalo # Zalo 官方 Bot API
openclaw plugins install @openclaw/zalouser # Zalo 个人账户(QR 登录)渠道支持一览
| 渠道 | 安装方式 | 特点 |
|---|---|---|
| Signal | 内置(需 signal-cli) | 端对端加密 |
| iMessage | 插件(BlueBubbles) | 需 macOS |
| Google Chat | 内置 | 企业 Google Workspace |
| Matrix | 插件 | 去中心化、可自托管 |
| Mattermost | 插件 | 开源 Slack 替代品 |
| MS Teams | 插件 | 企业级 |
| IRC | 内置 | 经典协议 |
| Nextcloud Talk | 插件 | 自托管 |
| LINE | 插件 | 亚太地区流行 |
| Synology Chat | 插件 | NAS 用户 |
| Nostr | 插件 | 去中心化 |
| Twitch | 插件 | 直播聊天室 |
| Zalo | 插件 | 越南用户 |