Skip to content

Commit 224c366

Browse files
committed
feat: add visual feedback for command execution timeout
1 parent 8a7147c commit 224c366

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/core/tools/executeCommandTool.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,9 @@ export async function executeCommand(
250250
const status: CommandExecutionStatus = { executionId, status: "timeout" }
251251
clineProvider?.postMessageToWebview({ type: "commandExecutionStatus", text: JSON.stringify(status) })
252252

253+
// Add visual feedback for timeout
254+
await cline.say("text", `Command execution timed out after ${commandExecutionTimeoutSeconds} seconds`)
255+
253256
cline.terminalProcess = undefined
254257

255258
return [

0 commit comments

Comments
 (0)