/** 迭代综合文档子目录名(v6.78.0+ 从 'global' 改为 'overview') */ export declare const GLOBAL_SPECS_DIR = "overview"; /** 迭代综合文档文件名列表(用于散落文件归位、路径解析等) * v7.5.1+:TECH/RISK/REVIEW/MONITOR 重新纳入,确保 sanitizeSpecDirectories 能将根目录散落文件归位到 overview/ * 这些文件在 Phase 1 写入 overview/,Phase 2 可生成各端专属版本写入 {端}/ */ export declare const GLOBAL_SPEC_FILES: string[]; /** * 解析迭代综合 spec 文件路径(优先 overview/,回退旧版 global/,再回退根目录) * 用于读取侧:兼容新旧三种路径 */ export declare function resolveGlobalSpecPath(specDir: string, filename: string): Promise; /** * 获取迭代综合 spec 文件的写入路径(始终使用新路径 overview/) * 自动确保 overview/ 目录存在 */ export declare function globalSpecWritePath(specDir: string, filename: string): Promise; /** * 从 CONSTITUTION.md 解析端列表(v6.46.0+) * 优先读取「端列表」章节,回退到「对应需求端」列 * v7.4.3+: 返回值经过合法性校验,过滤垃圾值 * 返回去重后的端名数组 */ export declare function parsePlatformList(): Promise; /** * 从 CONSTITUTION.md 解析各端的工程类型(v6.49.0+) * 返回 Map<端名, 工程类型> */ export declare function parsePlatformTypes(): Promise>; /** * 从 CONSTITUTION.md 解析项目信息表(v6.49.6+) * 返回 Map<工程标识, { projectType, projectName, srcPath, gitRepo, branch, platform }> * 用于 execute 命令确定代码输出位置 */ export interface ProjectInfo { projectIdentifier: string; projectType: string; projectName: string; srcPath: string; gitRepo: string; branch: string; platform: string; } export declare function parseProjectInfo(): Promise>; /** * 根据端名获取实际的工程路径(v6.49.6+) * 用于 execute 命令确定代码输出位置 */ export declare function getProjectPathForPlatform(platform: string): Promise; //# sourceMappingURL=spec-paths.d.ts.map