/** * Hand-authored tool descriptions, indexed by tool name. * * Single audit point for the agent-facing copy. Style: * - Action verb first. * - Sentence 1: what the tool does (incl. output shape). * - Sentence 2: when to reach for it (preconditions for writes, * reversibility callout for destructive operations). * * No CLI flag references. No `scai` brand prefix (already namespaced * by tool name). * * Tools that front an unstable surface (brand, brief, campaign, agents — * reverse-engineered, no SemVer stability promise) lead with an * `[unstable]` tag so an agent sees the signal before selecting the * tool. The matching SDK subpaths live under `./unstable/*`. */ export declare const TOOL_DESCRIPTIONS: Record; export declare const verifyDescriptions: (names: string[]) => { missing: string[]; tooShort: string[]; };