//! Multi-Agent Swarm System
//!
//! Specialist agents with role-specific prompts, consensus voting,
//! conflict resolution, and shared working memory.
//!
//! Features:
//! - Specialist agent roles (architect, coder, tester, reviewer)
//! - Role-specific system prompts
//! - Consensus voting for decisions (library API — not currently wired into
//! any production execution path)
//! - Conflict resolution strategies (same: library API only)
//! - Shared working memory
//! - Agent coordination
// Re-export all public types
pub use ;
pub use create_dev_swarm;
pub use ;
pub use ;