From c708d4e5269eb3fd26bb13edeec0d9071369bf73 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sun, 5 Apr 2026 15:33:54 +0900 Subject: [PATCH] feat(atlas): add isInjectingContinuation flag to SessionState MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add flag to track when continuation is being injected to prevent race conditions in boulder session management. 🤖 Generated with assistance of OhMyOpenCode --- src/hooks/atlas/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hooks/atlas/types.ts b/src/hooks/atlas/types.ts index 79a4c51dc..68401a5bd 100644 --- a/src/hooks/atlas/types.ts +++ b/src/hooks/atlas/types.ts @@ -35,6 +35,7 @@ export type PendingTaskRef = export interface SessionState { lastEventWasAbortError?: boolean lastContinuationInjectedAt?: number + isInjectingContinuation?: boolean promptFailureCount: number lastFailureAt?: number pendingRetryTimer?: ReturnType