(line = "")
| 411 | const thinkingLevel = resolveThinkingInput(parseThinkingLevel(options.thinking), model); |
| 412 | const suppressHuman = options.json === true || options.quiet === true; |
| 413 | const writeLine = (line = "") => { |
| 414 | if (!suppressHuman) process.stdout.write(`${line}\n`); |
| 415 | }; |
| 416 | |
| 417 | const ctx = await createWorkflowContext({ opts: options, projectDir }); |
| 418 | try { |