agent-team-composer
Version:
Transform README files into GitHub project plans with AI-powered agent teams
30 lines • 891 B
TypeScript
import { Phase, LLMPhaseGeneration, LLMEpicGeneration } from '../types';
export interface ProgressData {
projectInfo: {
title: string;
description: string;
domain: string;
features: string[];
techStack: string[];
complexity: string;
targetUsers?: string[];
};
readmeContent: string;
phases?: LLMPhaseGeneration['phases'];
phasesWithTasks?: Array<Phase & {
tasks: LLMEpicGeneration['tasks'];
}>;
finalPhases?: Phase[];
timestamp: number;
}
export declare class ProgressCache {
private cacheDir;
private cacheFile;
constructor(projectTitle: string);
ensureCacheDir(): Promise<void>;
save(data: Partial<ProgressData>): Promise<void>;
load(): Promise<ProgressData | null>;
clear(): Promise<void>;
getCachePath(): string;
}
//# sourceMappingURL=progress-cache.d.ts.map