From aa90cff9cc71e3c3cdbe9dbd131955f717eb2bed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9F=AF=E6=9D=A8?= Date: Thu, 16 Apr 2026 11:59:11 +0800 Subject: [PATCH] fix(cli-run): prevent premature exit when background tasks are active When using `opencode run`, the process exits prematurely if the main agent dispatches background subtasks. The CLI completion checker relies on `session.children()` + `session.status()` APIs which cannot see tasks in "pending" state (no session created yet) or tasks whose sessions are momentarily idle between operations. This fix bridges BackgroundManager state to the CLI completion checker using the existing run-continuation-state marker system: - Add "background-task" continuation marker source - BackgroundManager writes/clears markers on task lifecycle events (launch, cancel, complete, crash) - CLI completion checker blocks exit when marker is active - Fix todo-continuation-enforcer to also check "pending" task status Closes #3452 --- src/cli/run/completion.ts | 5 +++ src/cli/run/continuation-state.ts | 2 ++ src/features/background-agent/manager.ts | 34 +++++++++++++++++++ src/features/run-continuation-state/types.ts | 2 +- .../continuation-injection.ts | 2 +- .../todo-continuation-enforcer/idle-event.ts | 2 +- 6 files changed, 44 insertions(+), 3 deletions(-) diff --git a/src/cli/run/completion.ts b/src/cli/run/completion.ts index f28927f12..bcc0cebb8 100644 --- a/src/cli/run/completion.ts +++ b/src/cli/run/completion.ts @@ -20,6 +20,11 @@ export async function checkCompletionConditions(ctx: RunContext): Promise t.status === "running" || t.status === "pending") + if (activeTasks.length > 0) { + setContinuationMarkerSource( + this.directory, parentSessionID, "background-task", "active", + `${activeTasks.length} background task(s) active`, + ) + } else { + setContinuationMarkerSource( + this.directory, parentSessionID, "background-task", "idle", + ) + } + } + getAllDescendantTasks(sessionID: string): BackgroundTask[] { const result: BackgroundTask[] = [] const directChildren = this.getTasksByParentSession(sessionID) @@ -1585,6 +1604,11 @@ export class BackgroundManager { removeTaskToastTracking(task.id) + // Update continuation marker for CLI run mode + if (task.parentSessionID) { + this.updateBackgroundTaskMarker(task.parentSessionID) + } + if (options?.skipNotification) { this.cleanupPendingByParent(task) this.scheduleTaskRemoval(task.id) @@ -1700,6 +1724,11 @@ export class BackgroundManager { SessionCategoryRegistry.remove(task.sessionID) } + // Update continuation marker for CLI run mode + if (task.parentSessionID) { + this.updateBackgroundTaskMarker(task.parentSessionID) + } + try { await this.enqueueNotificationForParent(task.parentSessionID, () => this.notifyParentSession(task)) log(`[background-agent] Task completed via ${source}:`, task.id) @@ -1993,6 +2022,11 @@ export class BackgroundManager { SessionCategoryRegistry.remove(task.sessionID) } + // Update continuation marker for CLI run mode + if (task.parentSessionID) { + this.updateBackgroundTaskMarker(task.parentSessionID) + } + this.markForNotification(task) this.enqueueNotificationForParent(task.parentSessionID, () => this.notifyParentSession(task)).catch(err => { log("[background-agent] Error in notifyParentSession for crashed task:", { taskId: task.id, error: err }) diff --git a/src/features/run-continuation-state/types.ts b/src/features/run-continuation-state/types.ts index 856f3d9ef..b851043d3 100644 --- a/src/features/run-continuation-state/types.ts +++ b/src/features/run-continuation-state/types.ts @@ -1,4 +1,4 @@ -export type ContinuationMarkerSource = "todo" | "stop" +export type ContinuationMarkerSource = "todo" | "stop" | "background-task" export type ContinuationMarkerState = "idle" | "active" | "stopped" diff --git a/src/hooks/todo-continuation-enforcer/continuation-injection.ts b/src/hooks/todo-continuation-enforcer/continuation-injection.ts index 5844bebd2..d1ca73a1f 100644 --- a/src/hooks/todo-continuation-enforcer/continuation-injection.ts +++ b/src/hooks/todo-continuation-enforcer/continuation-injection.ts @@ -79,7 +79,7 @@ export async function injectContinuation(args: { } const hasRunningBgTasks = backgroundManager - ? backgroundManager.getTasksByParentSession(sessionID).some((task: { status: string }) => task.status === "running") + ? backgroundManager.getTasksByParentSession(sessionID).some((task: { status: string }) => task.status === "running" || task.status === "pending") : false if (hasRunningBgTasks) { diff --git a/src/hooks/todo-continuation-enforcer/idle-event.ts b/src/hooks/todo-continuation-enforcer/idle-event.ts index 162b60f6d..2c2c68d45 100644 --- a/src/hooks/todo-continuation-enforcer/idle-event.ts +++ b/src/hooks/todo-continuation-enforcer/idle-event.ts @@ -71,7 +71,7 @@ export async function handleSessionIdle(args: { } const hasRunningBgTasks = backgroundManager - ? backgroundManager.getTasksByParentSession(sessionID).some((task: { status: string }) => task.status === "running") + ? backgroundManager.getTasksByParentSession(sessionID).some((task: { status: string }) => task.status === "running" || task.status === "pending") : false if (hasRunningBgTasks) {