export interface CustomCommand { name: string; description: string; prompt: string; filePath: string; } /** * Load custom slash commands from {cwd}/.gg/commands/*.md * Each .md file becomes a slash command. Frontmatter provides name/description, * and the body becomes the prompt injected into the agent. */ export declare function loadCustomCommands(cwd: string): Promise; //# sourceMappingURL=custom-commands.d.ts.map