/** * agent_invoke — dispatch a task to a cortex-backed agent. * * Runs a focused task loop using the configured LLM provider: * 1. Queries cortex for existing knowledge about the topic * 2. Builds a context-aware prompt with what cortex already knows * 3. Runs the LLM to complete the task * 4. Stores findings back into cortex as observations * 5. Returns the result * * This replaces expensive host-agent subagents with cheap, cortex-aware * agents that compound knowledge across sessions. */ import type { ToolDefinition } from '../mcp/tools.js'; export declare const agentInvokeTool: ToolDefinition; //# sourceMappingURL=agent-invoke.d.ts.map