1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Bundle extension host module (Phase A). //! //! Feature-gated by `extensions`. See //! `docs/superpowers/specs/2026-04-17-bundle-extension-migration-design.md`. pub mod builtin_bridge; pub mod describe; pub mod dispatcher; pub mod errors; pub mod loader; pub mod registry; pub mod wasm; pub use errors::ExtensionError;