fix(todo-continuation-enforcer): add stagnation state fields

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-03-08 02:17:44 +09:00
parent 0ae4812bee
commit d7349b62da

View File

@@ -27,8 +27,10 @@ export interface SessionState {
isRecovering?: boolean
countdownStartedAt?: number
abortDetectedAt?: number
lastIncompleteCount?: number
lastInjectedAt?: number
inFlight?: boolean
stagnationCount: number
consecutiveFailures: number
}