/** * Skill 元数据 */ export interface SkillMeta { name: string; displayName: string; description: string; } /** * 版本记录文件内容 */ export interface VersionRecord { version: string; installedAt: string; skills: string[]; alipayCliInstalled: boolean; jqInstalled?: boolean; } /** * CLI 命令上下文 */ export interface CommandContext { cwd: string; targetDir: string; versionFile: string; legacyVersionFile: string; targetDirLabel: string; } /** * 工具检查结果 */ export interface ToolCheckResult { name: string; installed: boolean; version?: string; path?: string; } /** * 平台类型 */ export type PlatformType = 'macos' | 'linux-apt' | 'linux-yum' | 'unsupported'; //# sourceMappingURL=types.d.ts.map