()
| 136 | * Priority: AsyncLocalStorage (in-process) > dynamicTeamContext (tmux teammates). |
| 137 | */ |
| 138 | export function getTeammateColor(): string | undefined { |
| 139 | const inProcessCtx = getTeammateContext() |
| 140 | if (inProcessCtx) return inProcessCtx.color |
| 141 | return dynamicTeamContext?.color |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Returns true if this teammate session requires plan mode before implementation. |
no test coverage detected