1 2 3 4 5 6 7 8 9 10 11 12
//! Extension bundles: skills, policy, reminders, observability. #[cfg(feature = "mcp")] pub mod mcp; #[cfg(feature = "observability")] pub mod observability; #[cfg(feature = "permission")] pub mod permission; #[cfg(feature = "reminder")] pub mod reminder; #[cfg(feature = "skills")] pub mod skills;