agent-team-composer
Version:
Transform README files into GitHub project plans with AI-powered agent teams
32 lines • 973 B
TypeScript
import { ProjectSummary } from '../types';
export declare class ReadmeParser {
/**
* Parse README content and extract project information
*/
parse(content: string): Promise<{
title: string;
description: string;
domain: string;
features: string[];
techStack: string[];
complexity: 'simple' | 'moderate' | 'complex';
userTypes: string[];
integrations: string[];
}>;
private extractTitle;
private extractDescription;
private extractFeatures;
private extractTechStack;
private assessComplexity;
private identifyDomain;
private identifyUserTypes;
private identifyIntegrations;
}
export declare function parseReadme(content: string): Promise<ProjectSummary & {
features: string[];
techStack: string[];
complexity: 'simple' | 'moderate' | 'complex';
userTypes: string[];
integrations: string[];
}>;
//# sourceMappingURL=readme-parser.d.ts.map