()
| 58 | * — notably startKeychainPrefetch() at main.tsx top-level. |
| 59 | */ |
| 60 | export function isBareMode(): boolean { |
| 61 | return ( |
| 62 | isEnvTruthy(process.env.CLAUDE_CODE_SIMPLE) || |
| 63 | process.argv.includes('--bare') |
| 64 | ) |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Parses an array of environment variable strings into a key-value object |
no test coverage detected