Add todo item to TO-DOS.md with context from conversation
Saves current task context to TO-DOS.md for later resumption. Use when you need to pause work, switch contexts, or preserve important details from conversation before continuing elsewhere.
/plugin marketplace add glittercowboy/taches-cc-resources/plugin install taches-cc-resources@taches-cc-resources<todo-description> (optional - infers from conversation if omitted)date "+%Y-%m-%d %H:%M"Read TO-DOS.md in the working directory (create with Write tool if it doesn't exist)
Check for duplicates:
Extract todo content:
Append new section to bottom of file:
## Brief Context Title - YYYY-MM-DD HH:MM (3-8 word title, current timestamp)- **[Action verb] [Component]** - [Brief description]. **Problem:** [What's wrong/why needed]. **Files:** [Comma-separated paths with line numbers]. **Solution:** [Approach hints or constraints, if applicable].path/to/file.ts:123-145)Confirm and offer to continue with original work:
/add-to-todos was called## Add Todo Command Improvements - 2025-11-15 14:23
- **Add structured format to add-to-todos** - Standardize todo entries with Problem/Files/Solution pattern. **Problem:** Current todos lack consistent structure, making it hard for Claude to have enough context when revisiting tasks later. **Files:** `commands/add-to-todos.md:22-29`. **Solution:** Use inline bold labels with required Problem and Files fields, optional Solution field.
- **Create check-todos command** - Build companion command to list and select todos. **Problem:** Need workflow to review outstanding todos and load context for selected item. **Files:** `commands/check-todos.md` (new), `TO-DOS.md` (reads from). **Solution:** Parse markdown list, display numbered list, accept selection to load full context and remove item.