/** * MCP Prompts — discoverable prompt templates that appear as slash commands * in clients like Claude Desktop, Cursor, etc. */ export interface PromptDef { name: string; description: string; arguments?: Array<{ name: string; description: string; required?: boolean; }>; messages: (args: Record) => Array<{ role: "user" | "assistant"; content: { type: "text"; text: string; }; }>; } export declare const prompts: PromptDef[];