877 B
877 B
description
| description |
|---|
| Find all TODO and TASK comments and add them to the project task list |
Find all TODO and TASK comments and add them to the project task list.
Search the codebase for all TODO and TASK comments and add them to .llm/todo.md. Each TODO or TASK found in the code will be converted to a task in the markdown task list.
Steps
- Find all occurrences of "TODO" in the codebase using grep/search
- For each occurrence, gather:
- File path
- Line number
- Full TODO comment text
- Strip comment markers (
//,#,/* */) from the TODO/TASK text - Add each TODO or TASK as a new task entry to
.llm/todo.md:- [ ] Implement TODO from src/api/client.ts:87: Extract commonality in getRootNodes and getChildNodes - [ ] Implement TODO from test/utils.test.ts:103: Use deep object equality rather than loose assertions