aster/agents/communication/mod.rs
1// Agent Communication Module
2//
3// This module provides inter-agent communication capabilities:
4// - Message bus for agent-to-agent messaging
5// - Shared state management
6// - Agent coordination and task assignment
7
8mod coordinator;
9mod message_bus;
10mod shared_state;
11
12#[cfg(test)]
13mod coordinator_property_tests;
14#[cfg(test)]
15mod message_bus_property_tests;
16#[cfg(test)]
17mod shared_state_property_tests;
18
19pub use coordinator::*;
20pub use message_bus::*;
21pub use shared_state::*;