Markdown Sweep Todos

Find TODO comments in the codebase and add them to .llm/todo.md as tasks.

motlin Updated

File contents

Markdown Sweep TODOs

Use the markdown-tasks skill for task format and script path rules.

Search the codebase for TODO comments. For each occurrence, capture:

  • File path.
  • Line number.
  • Full TODO text with comment markers removed.

Compose all TODO tasks before writing. Add the complete batch in one shell command by chaining one call per TODO with &&:

python <plugin-root>/scripts/task_add.py .llm/todo.md "Implement TODO from <file>:<line>: <todo text>" && \
python <plugin-root>/scripts/task_add.py .llm/todo.md "Implement TODO from <another-file>:<line>: <todo text>"

Never add a multi-TODO batch across separate shell commands. Keeping the writes together reduces the chance that concurrent sessions interleave their tasks.

Report how many TODO tasks were added.

motlin/claude-code-plugins/tree/main/plugins/markdown-tasks/skills/markdown-sweep-todos commit 6646e10637

Frequently asked questions

npx skillmds@latest add motlin/markdown-sweep-todos