UNPKG

arela

Version:

AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.

18 lines 474 B
interface GenerateFlowsOptions { goal: string; cwd: string; files?: string[]; outputDir?: string; model?: 'claude' | 'codex'; } interface GeneratedFlow { name: string; path: string; content: string; } /** * Generate test flows by having AI read code and create comprehensive YAML flows */ export declare function generateFlows(options: GenerateFlowsOptions): Promise<GeneratedFlow[]>; export {}; //# sourceMappingURL=flow-generator.d.ts.map