/** * Strategy advisors — inspect loaded tool inventory and emit concrete, * tool-name-specific prompt sections so the LLM makes optimal tool choices. * * No tool names are hardcoded in the generic system prompt. Instead, * advisors run at tool-loading time and produce guidance referencing * the actual qualified names the LLM will see. */ import type { ServerInfo } from './types'; /** * Run all strategy advisors against the loaded server inventory * and return a combined strategy section for the LLM prompt. */ export declare function generateStrategySection(servers: ServerInfo[]): string;