feat(background-agent): extend types for team-mode background tasks

This commit is contained in:
YeonGyu-Kim
2026-04-28 10:48:03 +09:00
parent 5e42efc900
commit fe8ecd94ab

View File

@@ -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<string, boolean>