UNPKG

@sethdouglasford/claude-flow

Version:

Claude Code Flow - Advanced AI-powered development workflows with SPARC methodology

17 lines 655 B
import { IStrategy, DecompositionResult } from "./base.js"; import { SwarmObjective } from "../types.js"; /** * Development Strategy - Coordinated software development with meta-frameworks and advanced patterns * Based on the Development Swarm Pattern from swarm documentation * * Features: * - Architecture design coordination * - Parallel frontend/backend development * - Integration testing coordination * - Documentation generation */ export declare class DevelopmentStrategy implements IStrategy { constructor(); decomposeObjective(objective: SwarmObjective): Promise<DecompositionResult>; } //# sourceMappingURL=development.d.ts.map