(s)
| 11 | const LOG = new URL('./ultracode_test.log', import.meta.url).pathname; |
| 12 | const ITERS = Number(process.argv[2] || 3); |
| 13 | const log = (s) => { appendFileSync(LOG, s + '\n'); console.log(s); }; |
| 14 | |
| 15 | // EXACT text from crates/cli/src/tui/panels/model.rs ULTRACODE_GUIDELINES. |
| 16 | const GUIDELINES = `[ultracode] Dynamic-workflow mode. Express ALL of your work as ONE generated, executable workflow SCRIPT. Do NOT call \`parallel_task\` or \`task\` directly at the top level — the script IS the workflow. |
no test coverage detected