UNPKG

vibe-cli-tool

Version:

VibeCLI v1.9 - 模板商店生态,智能部署生成,多语言支持,交互式学习系统,企业级Web全栈应用CLI工具

28 lines 820 B
export interface ProjectAnalysisInput { description: string; requirements: string[]; constraints: { budget: 'low' | 'medium' | 'high'; timeline: 'fast' | 'normal' | 'flexible'; team_size: number; complexity: 'simple' | 'medium' | 'complex'; }; } export interface ProjectAnalysisResult { projectType: string; recommendedStack: { database: string; uiFramework: string; features: string[]; }; complexity: number; estimatedTime: string; } export declare class AIDecisionEngine { analyzeProject(input: ProjectAnalysisInput): Promise<ProjectAnalysisResult>; private detectProjectType; private recommendTechStack; private calculateComplexity; private estimateTime; } //# sourceMappingURL=ai-decision-engine.d.ts.map