From 7419288189ab1212edcbb738a6a5e24c8eb687d5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 11 Dec 2025 17:08:45 +0000 Subject: [PATCH 1/2] Initial plan From 1e6412e90e0ba4d7252bbe1213510b0943f1d457 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 11 Dec 2025 17:16:30 +0000 Subject: [PATCH 2/2] Fix TypeScript build errors in SpecRegenerationAPI interface Co-authored-by: GTheMachine <156854865+GTheMachine@users.noreply.github.com> --- app/src/lib/electron.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/src/lib/electron.ts b/app/src/lib/electron.ts index 0c5e75c5..54e9309a 100644 --- a/app/src/lib/electron.ts +++ b/app/src/lib/electron.ts @@ -147,10 +147,15 @@ export interface SpecRegenerationAPI { projectPath: string, projectDefinition: string ) => Promise<{ success: boolean; error?: string }>; + generateFeatures: (projectPath: string) => Promise<{ + success: boolean; + error?: string; + }>; stop: () => Promise<{ success: boolean; error?: string }>; status: () => Promise<{ success: boolean; isRunning?: boolean; + currentPhase?: string; error?: string; }>; onEvent: (callback: (event: SpecRegenerationEvent) => void) => () => void;