From f21f8bb4c77465191ad96fe342c6817a0933ae48 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Mon, 2 Feb 2026 12:59:22 -0500 Subject: [PATCH] temp: disable reasoning output with early continue --- packages/opencode/src/cli/cmd/run.ts | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/packages/opencode/src/cli/cmd/run.ts b/packages/opencode/src/cli/cmd/run.ts index d2c97b7b45..a1765ee5b9 100644 --- a/packages/opencode/src/cli/cmd/run.ts +++ b/packages/opencode/src/cli/cmd/run.ts @@ -415,17 +415,7 @@ export const RunCommand = cmd({ } if (part.type === "reasoning" && part.time?.end) { - if (emit("reasoning", { part })) continue - const text = part.text.trim() - if (!text) continue - const line = `Thinking: ${text}` - if (process.stdout.isTTY) { - UI.empty() - UI.println(`\u001b[3m${line}\u001b[0m`) - UI.empty() - continue - } - process.stdout.write(line + EOL) + continue } }