agent-team-composer
Version:
Transform README files into GitHub project plans with AI-powered agent teams
29 lines • 940 B
TypeScript
import { ProjectData } from '../types';
export declare class LLMOrchestrator {
private anthropic;
private model;
constructor(apiKey?: string);
generateProjectPlan(projectInfo: {
title: string;
description: string;
domain: string;
features: string[];
techStack: string[];
complexity: string;
targetUsers?: string[];
}, readmeContent: string, forceFresh?: boolean): Promise<ProjectData>;
private generatePhases;
private generateEpicsForPhases;
private formatIssuesForGitHub;
private getCommonRolesForPhase;
}
export declare function generateProjectPlan(projectInfo: {
title: string;
description: string;
domain: string;
features: string[];
techStack: string[];
complexity: string;
targetUsers?: string[];
}, readmeContent: string, forceFresh?: boolean): Promise<ProjectData>;
//# sourceMappingURL=llm-orchestrator.d.ts.map