export interface AIContextInput { /** 需求文档路径列表 */ requirements: string[]; /** 已读取的需求内容(避免重复 readFile) */ reqContents?: string[]; /** 源码目录列表 */ sources: string[]; /** 分析范围 */ scope: 'global' | 'iteration' | 'task'; /** 迭代名称 */ iteration?: string; /** 任务 ID */ taskId?: string; /** 分析深度 */ depth: 'quick' | 'normal' | 'deep'; } export interface AIContextResult { /** 输出的 prompt 文件路径 */ promptPath: string; /** prompt 内容 */ content: string; /** 涉及的文件数 */ totalFiles: number; /** 发现的 API 数 */ totalApis: number; } export declare function generateAIContext(input: AIContextInput): Promise; //# sourceMappingURL=ai-context-generator.d.ts.map