()
| 17 | } |
| 18 | |
| 19 | function readStdin() { |
| 20 | try { |
| 21 | return fs.readFileSync(0, 'utf8'); |
| 22 | } catch { |
| 23 | return ''; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | if (process.argv.includes('--help')) { |
| 28 | console.log('Usage: node scripts/codex-app-server-dashboard.js --file app-server.jsonl [--project-root PATH] [--out-dir PATH]'); |
no outgoing calls
no test coverage detected