From 32ce45d8bc1105be2cc829173a7cc205ce392572 Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Tue, 8 Jul 2025 13:45:38 -0400 Subject: [PATCH] Add a hint about using todos for complicated tasks (#5473) --- src/core/environment/reminder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/environment/reminder.ts b/src/core/environment/reminder.ts index eb1b39dfb5..6edb24364d 100644 --- a/src/core/environment/reminder.ts +++ b/src/core/environment/reminder.ts @@ -5,7 +5,7 @@ import { TodoItem, TodoStatus } from "@roo-code/types" */ export function formatReminderSection(todoList?: TodoItem[]): string { if (!todoList || todoList.length === 0) { - return "" + return "You have not created a todo list yet. Create one with `update_todo_list` if your task is complicated or involves multiple steps." } const statusMap: Record = { pending: "Pending",