import { createChannelRegistryLoader } from "../registry-loader.js"; import type { ChannelId, ChannelOutboundAdapter } from "../types.js"; // Channel docking: outbound sends should stay cheap to import. // // The full channel plugins (src/channels/plugins/*.ts) pull in status, // onboarding, gateway monitors, etc. Outbound delivery only needs chunking + // send primitives, so we keep a dedicated, lightweight loader here. const loadOutboundAdapterFromRegistry = createChannelRegistryLoader( (entry) => entry.plugin.outbound, ); export async function loadChannelOutboundAdapter( id: ChannelId, ): Promise { return loadOutboundAdapterFromRegistry(id); }