@sethdouglasford/claude-flow
Version:
Claude Code Flow - Advanced AI-powered development workflows with SPARC methodology
19 lines • 663 B
TypeScript
/**
* Simplified AUTO Strategy Implementation
* Automatically determines the best task decomposition approach
*/
import { IStrategy, DecompositionResult } from "./base.js";
import { SwarmObjective } from "../types.js";
export declare class AutoStrategy implements IStrategy {
private logger;
private metrics;
constructor(_config: any);
decomposeObjective(objective: SwarmObjective): Promise<DecompositionResult>;
private createDevelopmentTasks;
private createTestingTasks;
private createAnalysisTasks;
private createDocumentationTasks;
private createGenericTasks;
private createTask;
}
//# sourceMappingURL=auto.d.ts.map