()
| 96 | * Priority: AsyncLocalStorage (in-process) > dynamicTeamContext (tmux via CLI args). |
| 97 | */ |
| 98 | export function getAgentName(): string | undefined { |
| 99 | const inProcessCtx = getTeammateContext() |
| 100 | if (inProcessCtx) return inProcessCtx.agentName |
| 101 | return dynamicTeamContext?.agentName |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * Returns the team name if this session is part of a team. |
no test coverage detected