/** * Query Result Formatter * * Formats /v2/query results as clean Markdown optimized for LLM parsing. * * Design principles: * - Markdown for universal LLM readability * - Minimal decoration, maximum information density * - Clear key:value pairs for reliable extraction * - Token-efficient: no box-drawing chars, no emoji spam * * Skills and MCPs are separated from regular recommendations into dedicated * "Recommended Skills" / "Recommended MCPs" sections that display only the * description, resources, and activation ID. * * Results are split into two tiers — "Your Team's Memory" (team-private) and * "Shared Public Brain" (public) — so agents can tell proprietary team * knowledge from public knowledge. */ import type { ReadResultV2, ReadScope } from "../client/types.js"; export declare function formatQueryResultV2(result: ReadResultV2, scope?: ReadScope): string; //# sourceMappingURL=queryFormatter.d.ts.map