/** * Curated, agent-facing index of the most useful Codeep slash-commands. * * Injected into the agent's system prompt (see `getAgentSystemPrompt`) so the * model knows these exist and can point the user at the right one. Deliberately * a CURATED subset — not the full ~60-command registry in * `renderer/commands.ts` — to keep the prompt small; every entry here must be * a real command. Single source for this list so it doesn't drift across the * places that describe Codeep to the model. */ export declare const COMMAND_INDEX: { cmd: string; desc: string; }[]; /** Render the index as Markdown bullets for the system prompt. */ export declare function formatCommandIndex(): string;