/** * mama run command * * Run a single prompt through the agent loop (for testing) */ /** * Options for run command */ export interface RunOptions { /** Prompt to execute */ prompt: string; /** Enable verbose output */ verbose?: boolean; } /** * Execute run command */ export declare function runCommand(options: RunOptions): Promise; //# sourceMappingURL=run.d.ts.map