//! 请求/通知消息类型。
//!
//! ## 命名约定
//!
//! | 前缀 | 方向 | 含义 |
//! |------|------|------|
//! | `Request*` | 入站(外部 → AgentContext) | 命令/查询消息,通过 `ask` 发送并等待回复 |
//! | `Notify*` | 出站(AgentContext → 外部) | 纯通知,通过 `tell` 单向发送,不期待回复 |
//! | `Notify*` | 出站(AgentContext → 外部) | 纯通知,通过 `tell` 单向发送,不期待回复 |
//! | `Notify*ForReply` | 出站(AgentContext → 外部) | 通知并期待回复,通过 `ask` 发送,接收方处理后返回结果 |
//!
//! ## 子模块
//!
//! - [`outbound`]:`Notify*` / `Notify*ThenXxx` 出站通知
//! - [`inbound`]:`Request*` 入站请求消息和参数(如 [`CompressStrategy`](inbound::CompressStrategy))
pub use ;
pub use ;