/** * V3 CLI `ruflo transport use slim` — ADR-380 §2. * * Switches the active swarm/hive-mind coordination transport from today's * in-process/local-hooks routing to SLIM (secure messaging for MCP/A2A, * hierarchical routing, group membership, MLS encryption) for agents * coordinating across hosts or across a tenant boundary. * * Local transport stays the default. This command is a NO-OP on the local * path unless an operator has both set {@link AGNTCY_ENDPOINT_ENV} AND * installed the (not-yet-published) optional runtime package — see * runtime.ts for the full graceful-degradation contract. * * NOT WIRED INTO THE MAIN CLI ROUTER YET. This file is exported for a * later integration pass to attach as a new top-level `transport` command * (or a subcommand of one, per the open question in ADR-380 §"Open * Questions" about per-swarm vs. global scope). */ import type { Command } from '../../types.js'; declare const useCommand: Command; export declare const transportCommand: Command; export { useCommand }; export default transportCommand; //# sourceMappingURL=transport.d.ts.map