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,4 +45,8 @@ contextBridge.exposeInMainWorld('electronAPI', {
xcOpenCodeWebStop: () => ipcRenderer.invoke('xc-opencode-web-stop'),
xcOpenCodeWebGetStatus: () => ipcRenderer.invoke('xc-opencode-web-get-status'),
xcOpenCodeWebGetPort: () => ipcRenderer.invoke('xc-opencode-web-get-port'),
sddStart: () => ipcRenderer.invoke('sdd-start'),
sddStop: () => ipcRenderer.invoke('sdd-stop'),
sddGetStatus: () => ipcRenderer.invoke('sdd-get-status'),
sddGetPort: () => ipcRenderer.invoke('sdd-get-port'),
})