From taches
Adds a structured todo item to TO-DOS.md with context from the conversation, including problem, files, and solution fields. Checks for duplicates before appending.
How this command is triggered — by the user, by Claude, or both
Slash command
/taches:add-to-todos <todo-description> (optional - infers from conversation if omitted)This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Add Todo Item ## Context - Current timestamp: !`date "+%Y-%m-%d %H:%M"` ## Instructions 1. Read TO-DOS.md in the working directory (create with Write tool if it doesn't exist) 2. Check for duplicates: - Extract key concept/action from the new todo - Search existing todos for similar titles or overlapping scope - If found, ask user: "A similar todo already exists: [title]. Would you like to:\n\n1. Skip adding (keep existing)\n2. Replace existing with new version\n3. Add anyway as separate item\n\nReply with the number of your choice." - Wait for user response before procee...
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.
npx claudepluginhub bw2/taches-cc-resources16plugins reuse this command
First indexed Dec 31, 2025
Showing the 6 earliest of 16 plugins
/add-to-todosAdds a structured todo item to TO-DOS.md with context from the conversation, including problem, files, and solution fields. Checks for duplicates before appending.
/add-todoCaptures a todo or idea mid-session with a description, writing it to a local todo file without interrupting the current workflow.
/todoManages project todos in a todos.md file — add, complete, remove, undo, list, and filter by due date or past-due status.
/todoManage TODO.md (show / add / complete / delete / update via natural language) and show today's calendar.
/fire-todosCaptures and manages TODO items during development sessions; supports adding new tasks and listing pending todos grouped by area.