fix(tmux-subagent): avoid transcript fetches during idle stability checks

This commit is contained in:
YeonGyu-Kim
2026-04-04 18:48:03 +09:00
parent 4c3f6c1a52
commit 51d2f8b3e9
11 changed files with 257 additions and 36 deletions
+4
View File
@@ -923,6 +923,10 @@ export class TmuxSessionManager {
}
}
onEvent(event: { type: string; properties?: Record<string, unknown> }): void {
this.pollingManager.handleEvent(event)
}
createEventHandler(): (input: { event: { type: string; properties?: unknown } }) => Promise<void> {
return async (input) => {
await this.onSessionCreated(input.event as SessionCreatedEvent)