Cron
Use the cron tool to schedule reminders or recurring tasks.
Modes:
- •Reminder: send a message to the user.
- •Task: run a task description through the agent at each interval.
Examples:
code
cron(action="add", message="Time to stand up", every_seconds=3600) cron(action="add", message="Check status and summarize", cron_expr="0 9 * * 1-5") cron(action="list") cron(action="remove", job_id="abc123")