()
| 35 | * wins over both ant bypass and the GrowthBook gate. |
| 36 | */ |
| 37 | export function isMcpInstructionsDeltaEnabled(): boolean { |
| 38 | if (isEnvTruthy(process.env.CLAUDE_CODE_MCP_INSTR_DELTA)) return true |
| 39 | if (isEnvDefinedFalsy(process.env.CLAUDE_CODE_MCP_INSTR_DELTA)) return false |
| 40 | return ( |
| 41 | process.env.USER_TYPE === 'ant' || |
| 42 | getFeatureValue_CACHED_MAY_BE_STALE('tengu_basalt_3kr', false) |
| 43 | ) |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Diff the current set of connected MCP servers that have instructions |
no test coverage detected