Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fix-agent-cancel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"kilo-code": patch
---

Fix blank messages and UI not updating when canceling a task in Agent Manager
1 change: 1 addition & 0 deletions src/core/kilocode/agent-manager/AgentManagerProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1550,6 +1550,7 @@ export class AgentManagerProvider implements vscode.Disposable {
try {
await this.safeWriteToStdin(sessionId, message, "cancel")
this.log(sessionId, "Cancel request sent via stdin")
this.stopAgentSession(sessionId)
} catch (error) {
// Fallback to SIGTERM if stdin write fails
this.outputChannel.appendLine(`Failed to send cancel via stdin, falling back to SIGTERM: ${error}`)
Expand Down
Loading