1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
//! IM channel integration module.
//!
//! Two layers:
//! - Direct façade re-exports of `echo_integration::channels`
//! - Crate-local `AgentChannelHandler` adapter for connecting `ReactAgent`
//! to the IM channel session model
//!
//! # Capability Inheritance
//!
//! Agents created via `AgentChannelHandler` automatically inherit all framework
//! capabilities:
//! - Built-in tools (think, memory, answer)
//! - External tools (MCP, Skill, web, media, data)
//! - Long-term memory (remember/recall/forget)
//! - Context compression
//! - Guards
//! - Permission policies
//!
//! # Quick Start
//!
//! ```rust,no_run
//! use echo_agent::prelude::*;
//! use echo_agent::channels::*;
//! use std::sync::Arc;
//!
//! # async fn example() -> echo_agent::error::Result<()> {
//! // 1. Create ChannelManager
//! let mut manager = ChannelManager::new();
//!
//! // 2. Register channel
//! manager.register(Box::new(QqChannel::new(QqConfig {
//! app_id: "your-app-id".into(),
//! client_secret: "your-secret".into(),
//! })?));
//!
//! // 3. Use AgentChannelHandler for auto-bridging
//! let session_config = SessionConfig::default();
//! let handler_factory = |_channel_id: &str| -> Arc<dyn MessageHandler> {
//! Arc::new(SessionHandler::new(
//! session_config.clone(),
//! || -> Box<dyn MessageHandler> {
//! Box::new(AgentChannelHandler::from_config(
//! AgentConfig::standard("qwen3-max", "im-assistant", "You are a friendly assistant")
//! .enable_tool(true)
//! .enable_memory(true)
//! ))
//! },
//! ))
//! };
//!
//! // 4. Start
//! for result in manager.start_all(handler_factory).await {
//! result?;
//! }
//! # Ok(())
//! # }
//! ```
/// Direct re-exports from `echo_integration::channels`.
pub use *;
use crateAgent;
use crateReactAgent;
use crateAgentConfig;
use async_trait;
use Arc;
use Mutex;
/// IM message handler backed by a `ReactAgent`.
///
/// Forwards IM channel messages to the agent, automatically inheriting all
/// framework capabilities (tools, memory, MCP, Skills, compression, guards, etc.).
///
/// Each user session (managed by `SessionHandler`) owns an independent
/// `AgentChannelHandler` to ensure conversation isolation.