Skip to content

Commit 74dc06c

Browse files
committed
Explicit assistant message
1 parent 764b232 commit 74dc06c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/assistant-message/presentAssistantMessage.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,14 +206,14 @@ export async function presentAssistantMessage(cline: Task) {
206206
return `[${block.name} to '${block.params.mode_slug}'${block.params.reason ? ` because: ${block.params.reason}` : ""}]`
207207
case "codebase_search": // Add case for the new tool
208208
return `[${block.name} for '${block.params.query}']`
209+
case "update_todo_list":
210+
return `[${block.name}]`
209211
case "new_task": {
210212
const mode = block.params.mode ?? defaultModeSlug
211213
const message = block.params.message ?? "(no message)"
212214
const modeName = getModeBySlug(mode, customModes)?.name ?? mode
213215
return `[${block.name} in ${modeName} mode: '${message}']`
214216
}
215-
default:
216-
return `[${block.name}]`
217217
}
218218
}
219219

0 commit comments

Comments
 (0)