From 23e15e479e127c1dacde13948f7dc699494a7b70 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Sat, 13 Dec 2025 12:15:07 +0800 Subject: [PATCH] fix(cli-executor): update stdin prompt variable for CLI tool execution --- ccw/src/tools/cli-executor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccw/src/tools/cli-executor.ts b/ccw/src/tools/cli-executor.ts index 8eb5c704..739faa72 100644 --- a/ccw/src/tools/cli-executor.ts +++ b/ccw/src/tools/cli-executor.ts @@ -312,7 +312,7 @@ async function executeCliTool( // Write prompt to stdin if using stdin mode (for gemini/qwen) if (useStdin && child.stdin) { - child.stdin.write(prompt); + child.stdin.write(finalPrompt); child.stdin.end(); }