//! # thegent-shm
//!
//! Shared memory primitives for multi-agent orchestration.
//!
//! ## Architecture
//!
//! This crate follows **Hexagonal Architecture** (Ports & Adapters) with **Clean Architecture** layers.
//!
//! ## xDD Methodologies Applied
//!
//! - **TDD**: Tests written first in `src/tests/`
//! - **DDD**: Bounded contexts for circuit breakers, command cache
//! - **SOLID**: Single responsibility per module
//! - **CQRS**: Separate command and query interfaces
//! - **EDA**: Domain events for state changes
// Re-export for convenience
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use CommandCachePort;
pub use CircuitBreakerPort;
pub use HealthPort;
/// Shared memory interface for process coordination.