@hej / sigit / commits / cc215f3

Remove editor notification before tool execution

Seto Elkahfi committed Apr 24, 2026 at 01:40 UTC cc215f35ecf9b0afb6b8164694da1522e29fc5fd
1 file changed -12
src/main.rs
-12
@@ -220,18 +220,6 @@ impl Agent for SiGitAgent {
220 tc.arguments.chars().take(120).collect::<String>()
221 );
222
223 - // Notify the editor that we're calling a tool.
224 - let status_text = format!("🔧 `{}`\n", tc.function_name);
225 - let _ = self
226 - .notification_tx
227 - .send(SessionNotification::new(
228 - session_id.clone(),
229 - SessionUpdate::AgentMessageChunk(ContentChunk::new(ContentBlock::from(
230 - status_text,
231 - ))),
232 - ))
233 - .await;
234 -
223 // Execute the tool.
224 let output = tools::execute_tool(&tc.function_name, &tc.arguments);
225