/** * Project analysis module * * Analyzes existing project structure and configuration */ export interface ProjectAnalysis { repo: string; owner: string; languages: string[]; framework: string | null; buildTool: string | null; packageManager: string | null; issueCount: number; prCount: number; hasWorkflows: boolean; hasLabels: boolean; } /** * Analyze current project */ export declare function analyzeProject(): Promise; //# sourceMappingURL=project.d.ts.map