/** * Guidance prompts. * * These were previously "tools" that took no input and returned a wall of * static text — including a ~700 line hardcoded Next.js checklist that made up * half of the MCP server file. Prompts are the protocol feature meant for * this, and they stay out of the tool list where they cost context on every * request. */ export interface PromptDefinition { name: string; title: string; description: string; text: string; } export declare const PROMPTS: PromptDefinition[];