We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ab57fa commit 32ce45dCopy full SHA for 32ce45d
src/core/environment/reminder.ts
@@ -5,7 +5,7 @@ import { TodoItem, TodoStatus } from "@roo-code/types"
5
*/
6
export function formatReminderSection(todoList?: TodoItem[]): string {
7
if (!todoList || todoList.length === 0) {
8
- 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."
9
}
10
const statusMap: Record<TodoStatus, string> = {
11
pending: "Pending",
0 commit comments