()
| 34 | ]) |
| 35 | |
| 36 | export function isCoordinatorMode(): boolean { |
| 37 | if (feature('COORDINATOR_MODE')) { |
| 38 | return isEnvTruthy(process.env.CLAUDE_CODE_COORDINATOR_MODE) |
| 39 | } |
| 40 | return false |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Checks if the current coordinator mode matches the session's stored mode. |
no test coverage detected