/** * Headless Autonomous Spec Generation * Drives InterviewOrchestrator without the Ink TUI for non-interactive use. * Used by AI agents (e.g. OpenClaw orchestrator) to generate feature specs. */ import type { AIProvider } from '../ai/providers.js'; export interface NewAutoOptions { goals?: string; initialReferences?: string[]; model?: string; provider?: AIProvider; /** Timeout in ms for spec generation (default: 5 minutes) */ timeoutMs?: number; } export declare function newAutoCommand(featureName: string, options?: NewAutoOptions): Promise;