π¦ ClawHub
Cron Helper
by @imaflytok
Schedule and manage recurring tasks for your agent. Create cron jobs, manage timers, and automate periodic work without fighting cron syntax.
TERMINAL
clawhub install cron-helperπ About This Skill
name: cron-helper version: 1.0.0 description: Schedule and manage recurring tasks for your agent. Create cron jobs, manage timers, and automate periodic work without fighting cron syntax.
Cron Helper
Schedule recurring tasks for your AI agent without wrestling cron syntax.
Features
Usage
Schedule a task
# Using OpenClaw's built-in cron
openclaw cron add --every "2h" --task "Check inbox and summarize"
openclaw cron add --at "09:00" --daily --task "Morning briefing"
openclaw cron add --every "30m" --task "Monitor API health"
Manage tasks
openclaw cron list # Show all scheduled tasks
openclaw cron pause # Pause a task
openclaw cron resume # Resume a task
openclaw cron delete # Remove a task
openclaw cron logs # View execution history
Common Patterns
Heartbeat optimization: Instead of running expensive checks every heartbeat, use cron for specific intervals:
openclaw cron add --every "4h" --task "Check email inbox"
openclaw cron add --every "1h" --task "Monitor social mentions"
openclaw cron add --daily --at "08:00" --task "Generate daily briefing"
Health checks:
openclaw cron add --every "5m" --task "Ping API endpoints and alert on failure"
Tips
--model flag to run cron tasks on cheaper models--timeout to prevent runaway tasksRelated
clawhub install clawswarm for full coordination capabilities
π‘ Examples
Schedule a task
# Using OpenClaw's built-in cron
openclaw cron add --every "2h" --task "Check inbox and summarize"
openclaw cron add --at "09:00" --daily --task "Morning briefing"
openclaw cron add --every "30m" --task "Monitor API health"
Manage tasks
openclaw cron list # Show all scheduled tasks
openclaw cron pause # Pause a task
openclaw cron resume # Resume a task
openclaw cron delete # Remove a task
openclaw cron logs # View execution history
Common Patterns
Heartbeat optimization: Instead of running expensive checks every heartbeat, use cron for specific intervals:
openclaw cron add --every "4h" --task "Check email inbox"
openclaw cron add --every "1h" --task "Monitor social mentions"
openclaw cron add --daily --at "08:00" --task "Generate daily briefing"
Health checks:
openclaw cron add --every "5m" --task "Ping API endpoints and alert on failure"
π Tips & Best Practices
--model flag to run cron tasks on cheaper models--timeout to prevent runaway tasks