/** * Prompt-template commands — slash commands that inject detailed prompts * into the agent loop. Each command maps to a full prompt the agent executes. */ export interface PromptCommand { name: string; aliases: string[]; description: string; prompt: string; } export declare const PROMPT_COMMANDS: PromptCommand[]; /** Look up a prompt command by name or alias */ export declare function getPromptCommand(name: string): PromptCommand | undefined; //# sourceMappingURL=prompt-commands.d.ts.map