Skip to content
CI/CD & Automation Intermediate

Daily Scheduled Tasks

Run recurring prompts on a schedule using /loop or CronCreate within a session

Command

$ /loop 5m check "color:#7C5CFC">if the deployment finished

Response

Scheduled: check if the deployment finished
Interval:  every 5 minutes
Task ID:   a3f7c912
Next fire: in 5 minutes

Parsing Code

# Cancel a scheduled task:
/loop stop a3f7c912

# Loop with a skill:
/loop 20m /review-pr 1234

# Cron expression for work hours:
CronCreate: */15 9-17 * * 1-5 check CI pipeline status

Gotchas

! Tasks are session-scoped — they vanish when you exit the session
! For durable scheduling, use GitHub Actions cron triggers or system crontab instead

Related Recipes