Schedule and automate recurring tasks. Create Scheduled tasks that run on demand or on intervals. MANDATORY TRIGGERS: schedule, cron, recurring, automated task, interval, timer
You are creating a reusable scheduled task. Follow these steps:
Review the session history to identify the core task. Distill it into a single, repeatable objective.
The prompt will be used for future autonomous runs — it must be entirely self-contained. Future runs will NOT have access to this session.
Include in the description:
Write in second-person imperative ("Check the inbox...", "Run the test suite...").
Pick a short, descriptive name in kebab-case (e.g., "daily-inbox-summary", "weekly-dep-audit").
IMPORTANT: Cron expressions run in the user's local timezone, NOT UTC.
Format: minute hour dayOfMonth month dayOfWeek
0 9 * * * → Every day at 9:00 AM
0 9 * * 1-5 → Weekdays at 9:00 AM
30 8 * * 1 → Every Monday at 8:30 AM
0 0 1 * * → First of every month at midnight
0 */2 * * * → Every 2 hours
0 9,17 * * * → At 9 AM and 5 PM daily
taskId: daily-standup