From 4d7aef1da2412b68afb08e3070263b9895c751bc Mon Sep 17 00:00:00 2001 From: fujie Date: Sun, 22 Mar 2026 16:35:11 +0800 Subject: [PATCH] fix(github-copilot-sdk): fix redundant status queue writing affecting tool card format --- plugins/pipes/github-copilot-sdk/github_copilot_sdk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/pipes/github-copilot-sdk/github_copilot_sdk.py b/plugins/pipes/github-copilot-sdk/github_copilot_sdk.py index 1e1e027..a14cb7e 100644 --- a/plugins/pipes/github-copilot-sdk/github_copilot_sdk.py +++ b/plugins/pipes/github-copilot-sdk/github_copilot_sdk.py @@ -8908,7 +8908,7 @@ class Pipe: # Use the richer tool status text (which contains filenames/arguments context) # and ensure it's only printed to the stream ONCE per unique tool run. - queue.put_nowait(f"\n> 🧩 **{tool_status_text}**\n") + # queue.put_nowait(f"\n> 🧩 **{tool_status_text}**\n") # Close thinking tag if open before showing tool if state["thinking_started"]: