feat: 添加 SDD (规范驱动开发) 模块

This commit is contained in:
2026-03-18 16:17:30 +08:00
parent 90517f2289
commit c83f23c319
7 changed files with 312 additions and 1 deletions

View File

@@ -45,6 +45,10 @@ export interface ElectronAPI {
xcOpenCodeWebGetStatus: () => Promise<{ running: boolean; port: number }>
xcOpenCodeWebGetPort: () => Promise<{ port: number }>
xcOpenCodeWebCheckReady: () => Promise<{ ready: boolean }>
sddStart: () => Promise<{ success: boolean; error?: string }>
sddStop: () => Promise<{ success: boolean; error?: string }>
sddGetStatus: () => Promise<{ running: boolean; port: number }>
sddGetPort: () => Promise<{ port: number }>
}
declare global {