Skip to content

其他渠道

除主流渠道外,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 signal

Signal 支持端对端加密。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/matrix

Matrix 是去中心化的开放消息协议,支持自托管服务器(如 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/mattermost

Mattermost 是开源的 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-talk

LINE

状态:通过插件支持,LINE Messaging API。

bash
openclaw plugins install @openclaw/line

Synology Chat

状态:通过插件支持,Synology NAS 聊天。

bash
openclaw plugins install @openclaw/synology-chat

通过传入/传出 Webhook 接入 Synology Chat。


Nostr

状态:通过插件支持,去中心化消息协议(NIP-04)。

bash
openclaw plugins install @openclaw/nostr

Twitch

状态:通过插件支持,Twitch 聊天室(IRC 连接)。

bash
openclaw plugins install @openclaw/twitch

Zalo

状态:通过插件支持,越南主流即时通讯软件。

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插件越南用户