fix(tmux): properly cleanup isolated container pane on first subagent deletion

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

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-04-01 18:18:32 -07:00
parent 51d9685571
commit db23533adf
2 changed files with 123 additions and 0 deletions
+54
View File
@@ -172,6 +172,51 @@ export class TmuxSessionManager {
}
}
private async cleanupIsolatedContainerAfterSessionDeletion(
tracked: TrackedSession,
isolatedPaneAlreadyClosed: boolean,
state: WindowState,
): Promise<void> {
if (tracked.paneId !== this.isolatedWindowPaneId) {
return
}
if (this.sessions.size > 0) {
return
}
this.isolatedWindowPaneId = undefined
if (isolatedPaneAlreadyClosed) {
return
}
try {
const result = await executeAction(
{ type: "close", paneId: tracked.paneId, sessionId: tracked.sessionId },
{
config: this.tmuxConfig,
serverUrl: this.serverUrl,
windowState: state,
sourcePaneId: this.sourcePaneId ?? tracked.paneId,
},
)
if (!result.success) {
log("[tmux-session-manager] failed to close isolated container pane after anchor session deletion", {
sessionId: tracked.sessionId,
paneId: tracked.paneId,
})
}
} catch (error) {
log("[tmux-session-manager] failed to cleanup isolated container pane after anchor session deletion", {
sessionId: tracked.sessionId,
paneId: tracked.paneId,
error: String(error),
})
}
}
private markSessionClosePending(sessionId: string): void {
const tracked = this.sessions.get(sessionId)
if (!tracked) return
@@ -698,9 +743,13 @@ export class TmuxSessionManager {
const closeAction = decideCloseAction(state, event.sessionID, this.getSessionMappings())
if (!closeAction) {
this.removeTrackedSession(event.sessionID)
await this.cleanupIsolatedContainerAfterSessionDeletion(tracked, false, state)
return
}
const isolatedPaneAlreadyClosed =
closeAction.type === "close" && closeAction.paneId === tracked.paneId
try {
const result = await executeAction(closeAction, {
config: this.tmuxConfig,
@@ -723,6 +772,11 @@ export class TmuxSessionManager {
}
this.removeTrackedSession(event.sessionID)
await this.cleanupIsolatedContainerAfterSessionDeletion(
tracked,
isolatedPaneAlreadyClosed,
state,
)
}