/** * code-mode module barrel export. * * Exports the public API surface for the code-mode feature: * - CodeModeProvider: MCP provider that registers call_tool_chain + search_tools * - InstrumentedToolRegistrar: wraps a ToolRegistrar to capture tool registrations * - Types used by callers */ export { CodeModeProvider } from './provider.js'; export { InstrumentedToolRegistrar, deriveNamespaceAndFunction } from './tool-registry.js'; export type { ToolEntry, ExecutionResult, ExecutionOptions } from './types.js'; //# sourceMappingURL=index.d.ts.map