/** * Agent Command — Headless autonomous backlog executor * * Reads provider and model from ralph.config.cjs (set during wiggum init), * detects GitHub remote, creates the agent orchestrator, and runs it * in headless mode (generate or stream). */ export interface AgentOptions { model?: string; maxItems?: number; maxSteps?: number; labels?: string[]; issues?: number[]; reviewMode?: 'manual' | 'auto' | 'merge'; dryRun?: boolean; stream?: boolean; diagnoseGh?: boolean; } export declare function agentCommand(options?: AgentOptions): Promise;