/** * @a5c-ai/agent-launch-mux * * Launch orchestration for agent-mux: plan resolution, proxy setup, * harness spawning, bridge hooks, and completion engines. */ export { launchCommand, resolveLaunchPlan, LAUNCH_FLAGS, } from './launch.js'; export type { LaunchPlanInput, ProxyPlan, LaunchPlan, } from './launch.js'; export { BridgeHookEmulator, } from './bridge-hooks.js'; export type { BridgeHookContext, SessionStartResult, StopResult, } from './bridge-hooks.js'; export { createOpenAICompletionEngine, createGoogleCompletionEngine, } from './completion-engine.js'; export { ExitCode, flagStr, flagNum, flagBool, flagArr, printError, printJsonError, } from './cli-helpers.js'; export type { ExitCodeValue, } from './cli-helpers.js'; export type { FlagDef, ParsedArgs, SessionArgs, } from './types.js';