prompts/agent.system.tool.scheduler.md
Manage saved tasks and schedules. For complex task work, load skill scheduled-tasks.
Actions: list_tasks, find_task_by_name, show_task, run_task, update_task, delete_task, create_scheduled_task, create_adhoc_task, create_planned_task, wait_for_task.
Common args: action, name, uuid, system_prompt, prompt, attachments, schedule, timezone, plan, dedicated_context.
Rules:
create_*, update_task, delete_task, or run_task, inspect existing tasks with find_task_by_name or list_tasks.dedicated_context is false.create_scheduled_task for recurring/cron tasks; schedule must be cron fields, not an ISO datetime.create_planned_task with plan: ["YYYY-MM-DDTHH:MM:SS"].Europe/Rome; include timezone when the user names a timezone.schedule: {"minute":"15","hour":"9","day":"11","month":"5","weekday":"*","timezone":"Europe/Rome"}.