Manage tasks, todos, reminders, and chores. Use when the user wants to add a task, list their tasks, complete a task, delete a task, or set a reminder. Trigger words include todo, task, remind, reminder, add, list, done, complete, delete.
Use this skill when the user:
Tasks are stored in data/todos.json with this structure:
{
"todos": [
{"id": 1, "content": "Buy groceries", "completed": false, "created_at": "2024-01-01T10:00:00"}
],
"next_id": 2
}
next_idcompleted: false and current timestampnext_idcompleted: trueWhen listing tasks:
📋 Your Tasks:
1. ⬜ Buy groceries
2. ✅ Call mom
3. ⬜ Fix the bug
Total: 3 tasks (1 completed)
User: "add a task at 7pm to buy groceries" Response: "✅ Added task #1: Buy groceries at 7pm"
User: "remind me to call mom tomorrow" Response: "✅ Added task #2: Call mom tomorrow"
User: "show my todos" Response: "📋 Your Tasks:
User: "complete task 1" Response: "✅ Completed: Buy groceries at 7pm"
User: "what do I need to do?" Response: "📋 Your Tasks:
You have 1 pending task."