()
| 360 | // which the Kiro adapter sets on the hook command line implicitly via the |
| 361 | // runtime environment, and other adapters leave unset). |
| 362 | function getDedupStatePath() { |
| 363 | const dir = process.env.EVOLVER_SESSION_STATE_DIR |
| 364 | || path.join(os.homedir(), '.evolver'); |
| 365 | try { fs.mkdirSync(dir, { recursive: true }); } catch { /* ignore */ } |
| 366 | return path.join(dir, 'session-start-state.json'); |
| 367 | } |
| 368 | |
| 369 | function getNoticeStatePath() { |
| 370 | const dir = process.env.EVOLVER_SESSION_STATE_DIR |
no outgoing calls
no test coverage detected