mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
Add a hint about using todos for complicated tasks (#5473)
This commit is contained in:
parent
6ab57fae43
commit
32ce45d8bc
1 changed files with 1 additions and 1 deletions
|
|
@ -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<TodoStatus, string> = {
|
||||
pending: "Pending",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue