(
context: {
agentId: string
agentName: string
teamName: string
color?: string
planModeRequired: boolean
parentSessionId?: string
} | null,
)
| 54 | * Set the dynamic team context (called when joining a team at runtime) |
| 55 | */ |
| 56 | export function setDynamicTeamContext( |
| 57 | context: { |
| 58 | agentId: string |
| 59 | agentName: string |
| 60 | teamName: string |
| 61 | color?: string |
| 62 | planModeRequired: boolean |
| 63 | parentSessionId?: string |
| 64 | } | null, |
| 65 | ): void { |
| 66 | dynamicTeamContext = context |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Clear the dynamic team context (called when leaving a team) |
no outgoing calls
no test coverage detected