()
| 147 | * Priority: AsyncLocalStorage > dynamicTeamContext > env var. |
| 148 | */ |
| 149 | export function isPlanModeRequired(): boolean { |
| 150 | const inProcessCtx = getTeammateContext() |
| 151 | if (inProcessCtx) return inProcessCtx.planModeRequired |
| 152 | if (dynamicTeamContext !== null) { |
| 153 | return dynamicTeamContext.planModeRequired |
| 154 | } |
| 155 | return isEnvTruthy(process.env.CLAUDE_CODE_PLAN_MODE_REQUIRED) |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * Check if this session is a team lead. |
no test coverage detected