From fe8ecd94ab2c25cb147ee214a00573b2202bc1b7 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 28 Apr 2026 10:48:03 +0900 Subject: [PATCH] feat(background-agent): extend types for team-mode background tasks --- src/features/background-agent/types.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/features/background-agent/types.ts b/src/features/background-agent/types.ts index 5edbe102d..443330a6e 100644 --- a/src/features/background-agent/types.ts +++ b/src/features/background-agent/types.ts @@ -32,6 +32,7 @@ export interface BackgroundTask { rootSessionID?: string parentSessionID: string parentMessageID: string + teamRunId?: string description: string prompt: string agent: string @@ -76,6 +77,8 @@ export interface LaunchInput { agent: string parentSessionID: string parentMessageID: string + teamRunId?: string + suppressTmuxSpawn?: boolean parentModel?: { providerID: string; modelID: string } parentAgent?: string parentTools?: Record