()
| 1377 | } |
| 1378 | |
| 1379 | function isJsonlTranscriptEnabled(): boolean { |
| 1380 | if (process.env.USER_TYPE === 'ant') { |
| 1381 | const env = process.env.CLAUDE_CODE_JSONL_TRANSCRIPT |
| 1382 | if (isEnvTruthy(env)) return true |
| 1383 | if (isEnvDefinedFalsy(env)) return false |
| 1384 | } |
| 1385 | const config = getFeatureValue_CACHED_MAY_BE_STALE( |
| 1386 | 'tengu_auto_mode_config', |
| 1387 | {} as AutoModeConfig, |
| 1388 | ) |
| 1389 | return config?.jsonlTranscript === true |
| 1390 | } |
| 1391 | |
| 1392 | /** |
| 1393 | * PowerShell-specific deny guidance for the classifier. Appended to the |
no test coverage detected