> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zeus.agentspro.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# 渠道集成

> Zeus 多渠道消息集成 - 飞书、Slack、Discord 等

# 渠道集成

Zeus 支持多渠道消息集成，让你的 AI 助手能够在不同平台上与用户交互。

## 支持的渠道

| 渠道                     | 状态  | 说明                 |
| ---------------------- | --- | ------------------ |
| [飞书](/channels/Feishu) | 开发中 | 数字分身、自动回复、SSE 流式更新 |
| Slack                  | 计划中 | -                  |
| Discord                | 计划中 | -                  |
| 企业微信                   | 计划中 | -                  |
| Telegram               | 计划中 | -                  |
| 钉钉                     | 计划中 | -                  |

## 设计理念

借鉴 [OpenClaw](https://docs.openclaw.ai/channels) 的多渠道设计：

* **统一抽象** - 所有渠道遵循相同的 Channel 接口
* **会话隔离** - 每个聊天/用户独立的会话上下文
* **激活策略** - 灵活的 mention/always 激活模式
* **白名单控制** - 支持用户和群聊白名单
* **流式更新** - SSE 消息流同步到各渠道

## 架构概览

```mermaid theme={null}
flowchart TD
    subgraph Gateway["Zeus Gateway"]
        Feishu["飞书 Channel"]
        Slack["Slack Channel"]
        Discord["Discord Channel"]
        More["更多... Channel"]

        subgraph Router["Channel Router"]
            R1["消息规范化"]
            R2["激活策略判断"]
            R3["会话路由"]
        end

        subgraph Agent["AI Agent"]
            A1["复用 Zeus 完整能力"]
            A2["分层 Prompt 系统"]
            A3["记忆和上下文"]
        end

        Feishu --> Router
        Slack --> Router
        Discord --> Router
        More --> Router
        Router --> Agent
    end
```

## 开始使用

选择你需要集成的渠道，查看详细文档：

<CardGroup cols={2}>
  <Card title="飞书" icon="message" href="/channels/Feishu">
    数字分身、自动回复、SSE 流式更新
  </Card>

  <Card title="更多渠道" icon="plus">
    更多渠道支持即将推出
  </Card>
</CardGroup>
