> ## 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.

# Overview

> Zeus Multi-Channel Message Integration - Feishu, Slack, Discord, and more

# Channel Integration

Zeus supports multi-channel message integration, enabling your AI assistant to interact with users across different platforms.

## Supported Channels

| Channel                                     | Status         | Description                                     |
| ------------------------------------------- | -------------- | ----------------------------------------------- |
| [Feishu](/en/documentation/channels/feishu) | In Development | Digital twin, auto-reply, SSE streaming updates |
| Slack                                       | Planned        | -                                               |
| Discord                                     | Planned        | -                                               |
| WeCom                                       | Planned        | -                                               |
| Telegram                                    | Planned        | -                                               |
| DingTalk                                    | Planned        | -                                               |

## Design Philosophy

Inspired by [OpenClaw](https://docs.openclaw.ai/channels) multi-channel design:

* **Unified Abstraction** - All channels follow the same Channel interface
* **Session Isolation** - Independent session context per chat/user
* **Activation Strategies** - Flexible mention/always activation modes
* **Allowlist Control** - Supports user and chat allowlists
* **Streaming Updates** - SSE message stream synchronized to each channel

## Architecture Overview

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

        subgraph Router["Channel Router"]
            R1["Message Normalization"]
            R2["Activation Strategy Check"]
            R3["Session Routing"]
        end

        subgraph Agent["AI Agent"]
            A1["Reuse Full Zeus Capabilities"]
            A2["Layered Prompt System"]
            A3["Memory and Context"]
        end

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

## Getting Started

Choose the channel you need to integrate and view the detailed documentation:

<CardGroup cols={2}>
  <Card title="Feishu" icon="message" href="/en/documentation/channels/feishu">
    Digital twin, auto-reply, SSE streaming updates
  </Card>

  <Card title="More Channels" icon="plus">
    More channel support coming soon
  </Card>
</CardGroup>
