/** * CLI: `oc-forgecode ultrawork` — autonomous multi-step coding pipeline. * * Ultrawork mode orchestrates: Intent → Plan → Execute → Audit → Report. * Uses the slash command template for the pipeline definition. * * Usage: * oc-forgecode ultrawork "add pagination to the users API" * oc-forgecode ultrawork --plan-only "refactor auth module" */ interface UltraworkOptions { planOnly?: boolean; maxSteps?: number; autoApprove?: boolean; } export declare function loadTemplate(): string; export declare function parseArgs(args: string[]): { task: string; options: UltraworkOptions; }; export declare function buildPrompt(task: string, options: UltraworkOptions): string; export declare function cli(args: string[]): Promise; /** * Programmatic entry — for use by the agent loop or harness. * Returns the assembled ultrawork prompt for injection into the conversation. */ export declare function createUltraworkPrompt(task: string, opts?: Partial): string; export {}; //# sourceMappingURL=ultrawork.d.ts.map