()
| 98 | const HEARTBEAT_INTERVAL_MS = 30_000 |
| 99 | |
| 100 | function isPersistentRetryEnabled(): boolean { |
| 101 | return feature('UNATTENDED_RETRY') |
| 102 | ? isEnvTruthy(process.env.CLAUDE_CODE_UNATTENDED_RETRY) |
| 103 | : false |
| 104 | } |
| 105 | |
| 106 | function isTransientCapacityError(error: unknown): boolean { |
| 107 | return ( |
no test coverage detected