Skip to content

Commit 32ce45d

Browse files
authored
Add a hint about using todos for complicated tasks (#5473)
1 parent 6ab57fa commit 32ce45d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/environment/reminder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { TodoItem, TodoStatus } from "@roo-code/types"
55
*/
66
export function formatReminderSection(todoList?: TodoItem[]): string {
77
if (!todoList || todoList.length === 0) {
8-
return ""
8+
return "You have not created a todo list yet. Create one with `update_todo_list` if your task is complicated or involves multiple steps."
99
}
1010
const statusMap: Record<TodoStatus, string> = {
1111
pending: "Pending",

0 commit comments

Comments
 (0)