(projectRoot)
| 25 | } |
| 26 | |
| 27 | function defaultOutPath(projectRoot) { |
| 28 | const stamp = new Date().toISOString().replace(/[:.]/g, '-'); |
| 29 | return path.join(projectRoot, '.planning', 'app-server', `capture-${stamp}.jsonl`); |
| 30 | } |
| 31 | |
| 32 | function resolveCodexInvocation(codexBin) { |
| 33 | if (codexBin) return { command: codexBin, prefixArgs: [], shell: process.platform === 'win32' }; |
no outgoing calls
no test coverage detected