/** * Bundled slash-command prompt templates for gg-editor. * * Mirrors ggcoder's `core/prompt-commands.ts` pattern: each command name maps * to a full prompt that the agent loop executes. When the user types `/X`, * the App.tsx slash dispatcher looks up the command, optionally appends any * args, and runs the prompt as if it were a normal user message. * * Why bundled (not custom): these are core gg-editor workflows tied to our * tool surface (`brand_kit`, `audit_*`, `verify_thumbnail_promise`, etc.). * Per-project custom commands could still live in `/.gg/commands/*.md` * if we wire that loader in later — bundled commands take priority either * way. */ export interface PromptCommand { name: string; aliases: string[]; description: string; prompt: string; } export declare const EDITOR_PROMPT_COMMANDS: PromptCommand[]; /** Look up a prompt command by name or alias. Returns undefined when not found. */ export declare function getEditorPromptCommand(name: string): PromptCommand | undefined; //# sourceMappingURL=prompt-commands.d.ts.map