/** * Channel 多代理协作模块 * * P2-13: 事件源多代理运行时 * * 功能: * - 代理生命周期管理 * - 消息路由 * - 任务管理 * - Supervisor 模式 * - Inbox 策略 * - 事件日志 */ export type { AgentIdentity, AgentRole, AgentStatus, ChannelMessage, MessageType, MessageMetadata, ChannelTask, TaskStatus, InboxStrategy, ChannelConfig, ChannelEvent, ChannelEventType, ChannelRuntime, ChannelStatus, SupervisorConfig, } from './channel-types.js'; export { DEFAULT_INBOX_STRATEGY, DEFAULT_SUPERVISOR_CONFIG, } from './channel-types.js'; export { AgentInbox, InboxManager, } from './channel-inbox.js'; export { ChannelRuntimeImpl, createChannelRuntime, } from './channel-runtime.js'; export { Supervisor, createSupervisor, } from './channel-supervisor.js'; export { EventLogStore, createEventLogStore, } from './channel-event-log.js'; export type { EventLogFilter, EventLogStats, } from './channel-event-log.js'; //# sourceMappingURL=index.d.ts.map