/** * Workflow prompts exposed over MCP `prompts/list` and `prompts/get`. Each * prompt expands to a ready-to-run instruction that chains the right tools. * Prompts contain no per-user data and make no upstream calls, so they are * safe to serve without an API key. */ interface PromptArg { name: string; description: string; required: boolean; } interface PromptDef { name: string; description: string; arguments: PromptArg[]; build: (args: Record) => string; } export declare const prompts: PromptDef[]; export declare function listPrompts(): { name: string; description: string; arguments: PromptArg[]; }[]; export declare function getPrompt(name: string, args?: Record): { description: string; messages: { role: "user"; content: { type: "text"; text: string; }; }[]; } | null; export {}; //# sourceMappingURL=index.d.ts.map