MCPcopy Create free account
hub / github.com/Zoo-Code-Org/Zoo-Code / restoreTodoListForTask

Function restoreTodoListForTask

src/core/tools/UpdateTodoListTool.ts:153–159  ·  view source on GitHub ↗
(cline: Task, todoList?: TodoItem[])

Source from the content-addressed store, hash-verified

151}
152
153export function restoreTodoListForTask(cline: Task, todoList?: TodoItem[]) {
154 if (todoList) {
155 cline.todoList = Array.isArray(todoList) ? todoList : []
156 return
157 }
158 cline.todoList = getLatestTodo(cline.clineMessages)
159}
160
161function todoListToMarkdown(todos: TodoItem[]): string {
162 return todos

Callers 1

Calls 1

getLatestTodoFunction · 0.90

Tested by

no test coverage detected