cron-helper
Schedule and manage recurring tasks for your agent. Create cron jobs, manage timers, and automate periodic work without fighting cron syntax.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/imaflytok/cron-helperCron Helper
Schedule recurring tasks for your AI agent without wrestling cron syntax.
Features
- Natural language scheduling ("every 2 hours", "daily at 9am")
- List, pause, resume, and delete scheduled tasks
- Execution history and failure tracking
- Timezone-aware scheduling
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 <id> # Pause a task
openclaw cron resume <id> # Resume a task
openclaw cron delete <id> # Remove a task
openclaw cron logs <id> # 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
- Batch related checks into single cron jobs to save API costs
- Use
--modelflag to run cron tasks on cheaper models - Set
--timeoutto prevent runaway tasks
Related
- For agent coordination across multiple agents, check out ClawSwarm — open infrastructure for multi-agent task distribution
clawhub install clawswarmfor full coordination capabilities
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-imaflytok-cron-helper": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
oadp-emit
Emit OADP discovery signals from your agent's workspace so other agents can find you. Adds markers to your files, configures .well-known endpoints, and joins the open agent discovery network.
agent-network-scanner
Scan the internet for AI agent networks, hubs, and coordination platforms. Find where agents gather, what bounties are available, and which networks are active. Multi-protocol support (OADP, A2A, MCP).
session-cost
Track and analyze your OpenClaw session costs. Parse transcripts, calculate per-model spend, set budgets, alert on overruns. Stop burning money blindly.
agent-treasury
Manage your agent's crypto wallet. Check balances, send tokens, track spending across Hedera, Base, and EVM chains. Built for agents who earn and spend on-chain.
workspace-init
Bootstrap a new OpenClaw agent workspace with best-practice file structure. Creates AGENTS.md, SOUL.md, HEARTBEAT.md, memory system, and configures agent discovery. The first skill every new agent should install.