feat(FN-3209): fix refine continuation flow in planning mode and add local

Merges fixes for the planning refine continuation flow (FN-3209) alongside a new local startup script for development environments. The changes include updates to `PlanningModeModal.tsx`, new and updated tests for the planning system, route handler improvements in `chat.ts` and `planning.ts`, and do

Fusion-Task-Id: FN-3209
This commit is contained in:
Fusion
2026-05-05 11:26:25 -07:00
committed by gsxdsm
parent 1f50be85a1
commit f2accb736f
8 changed files with 282 additions and 22 deletions

View File

@@ -1231,7 +1231,7 @@ export function __setCreateFnAgent(mock: typeof createFnAgent): void {
// hit the real engine. Mirror the same fake into the resolved-session slot
// so existing test setups that only call `__setCreateFnAgent` continue to
// work.
createResolvedAgentSession = (async (options: any) => mock(options)) as typeof createResolvedAgentSession;
createResolvedAgentSession = (async (options: unknown) => mock(options)) as typeof createResolvedAgentSession;
}
/**