()
| 271 | } |
| 272 | |
| 273 | function getEvolutionPrinciplesPath() { |
| 274 | const repoRoot = getRepoRoot(); |
| 275 | const custom = path.join(repoRoot, 'EVOLUTION_PRINCIPLES.md'); |
| 276 | if (fs.existsSync(custom)) return custom; |
| 277 | return path.join(repoRoot, 'assets', 'gep', 'EVOLUTION_PRINCIPLES.md'); |
| 278 | } |
| 279 | |
| 280 | function getReflectionLogPath() { |
| 281 | return path.join(getEvolutionDir(), 'reflection_log.jsonl'); |
nothing calls this directly
no test coverage detected