What problem does it solve? It lets an AI agent run a prompt on its own at a future time, either once or on a repeating schedule, without anyone watching, so recurring reminders and periodic checks happen automatically. ## Core Features & Use Cases - Recurring and one-shot scheduling: Create tasks with a five-field cron expression for repeating runs or an RFC3339 fire_at timestamp for a single execution. - Safe lifecycle management: List, verify, delete, and replace tasks using stable UUIDs, with explicit procedures for updating tasks that have no native update tool. - Immediate verification: Trigger a scheduled task on demand with run_now to confirm it behaves as intended while the user is still present. - Use Case: A user says "every weekday at 8am, summarize my feeds" — the agent checks for duplicates, creates the task with 0 8 * * 1-5 in local time, confirms it in the list, and reports the next run time. ## Quick Start Ask the agent to schedule a reminder, for example: remind me every Monday at 9am to review my weekly goals.