diff --git a/src/resources/extensions/gsd/guided-flow.ts b/src/resources/extensions/gsd/guided-flow.ts index 877e61927..c6e6c0d6d 100644 --- a/src/resources/extensions/gsd/guided-flow.ts +++ b/src/resources/extensions/gsd/guided-flow.ts @@ -786,13 +786,8 @@ export async function showDiscuss( const milestoneIds = findMilestoneIds(basePath); const uniqueMilestoneIds = !!loadEffectiveGSDPreferences()?.preferences?.unique_milestone_ids; const nextId = nextMilestoneIdReserved(milestoneIds, uniqueMilestoneIds); -<<<<<<< HEAD pendingAutoStartMap.set(basePath, { ctx, pi, basePath, milestoneId: nextId, step: false, createdAt: Date.now() }); - await dispatchWorkflow(pi, buildDiscussPrompt(nextId, `New milestone ${nextId}.`, basePath), "gsd-run", ctx, "discuss-milestone"); -======= - pendingAutoStartMap.set(basePath, { ctx, pi, basePath, milestoneId: nextId, step: false }); await dispatchWorkflow(pi, await prepareAndBuildDiscussPrompt(ctx, nextId, `New milestone ${nextId}.`, basePath), "gsd-run", ctx, "discuss-milestone"); ->>>>>>> 179320ad (feat(gsd): add deep evidence-backed discussion system with preparation engine) } return; } @@ -1196,13 +1191,8 @@ async function handleMilestoneActions( const milestoneIds = findMilestoneIds(basePath); const uniqueMilestoneIds = !!loadEffectiveGSDPreferences()?.preferences?.unique_milestone_ids; const nextId = nextMilestoneIdReserved(milestoneIds, uniqueMilestoneIds); -<<<<<<< HEAD pendingAutoStartMap.set(basePath, { ctx, pi, basePath, milestoneId: nextId, step: stepMode, createdAt: Date.now() }); - await dispatchWorkflow(pi, buildDiscussPrompt(nextId, -======= - pendingAutoStartMap.set(basePath, { ctx, pi, basePath, milestoneId: nextId, step: stepMode }); await dispatchWorkflow(pi, await prepareAndBuildDiscussPrompt(ctx, nextId, ->>>>>>> 179320ad (feat(gsd): add deep evidence-backed discussion system with preparation engine) `New milestone ${nextId}.`, basePath ), "gsd-run", ctx, "discuss-milestone");