/** * Claude SDK backend — barrel re-export. * * All consumers import from this file; the implementation is split across * focused modules for readability and maintainability. */ export { initAgent, updateSystemPrompt } from "./state.js"; export { warmSession } from "./warm.js"; export { getActiveQuery } from "./handler.js"; export { buildMcpServers, buildPluginMcpServers, getActiveFrontends, } from "./options.js"; export { getBridgePort } from "./state.js"; export { runOneShotAgent, evictOrphanSubprocesses, initClaudeOneShot, } from "./one-shot.js";