/** * @manifest/agent-sdk — LLM-friendly interfaces for the Manifest runtime engine. * * Exports: * - AgentRuntime — stateful wrapper with tool call routing * - Tool formats — Anthropic / OpenAI / Vercel tool definition generators * - Introspection — entity & command listing and description * - Intent mapping — keyword-based natural-language command matching * - JSON Schema helpers — IR type → JSON Schema conversion */ export type * from './types'; export { irTypeToJsonSchema, irParametersToJsonSchema, irValueToJson } from './json-schema.js'; export { listEntities, describeEntity, listCommands, describeCommand, getEntityRelationships, getActionableEntities, formatExpression, formatIRType, } from './introspect.js'; export { toAnthropicTools, toOpenAITools, toVercelAITools, commandToAnthropicTool, commandToOpenAITool, commandToVercelTool, mangleToolName, parseToolName, getBuiltinToolNames, } from './tool-definitions.js'; export { findMatchingCommands, tokenize } from './intent-mapper.js'; export { AgentRuntime } from './agent-runtime.js'; //# sourceMappingURL=index.d.ts.map