/** * ralph-starter openspec — Interactive OpenSpec wizard * * Guides the user through working with OpenSpec specs: * 1. Detect or create openspec/ directory * 2. Browse existing changes or create a new one * 3. Select a change to build * 4. Validate and delegate to run command */ export type OpenSpecWizardOptions = { commit?: boolean; push?: boolean; pr?: boolean; validate?: boolean; maxIterations?: number; agent?: string; }; export declare function openspecCommand(options: OpenSpecWizardOptions): Promise; //# sourceMappingURL=openspec.d.ts.map