Automating Tasks with OpenClaw Cron Scheduling
Set up recurring automated tasks â daily reports, periodic checks, and scheduled workflows.
Cron Scheduling
OpenClaw's cron system lets you schedule recurring tasks. The pattern is simple: trigger + action + deliver â define when it runs, what it does, and where results go.
Basic Cron Setup
Add cron jobs to your openclaw.json:
{
"cron": [
{
"schedule": "0 8 * * *",
"action": "Generate my daily briefing with top news, weather, and calendar events",
"channel": "telegram"
}
]
}
This sends a daily briefing to Telegram every morning at 8 AM.
Cron Expression Format
ââââââââââââââ minute (0-59)
â ââââââââââââââ hour (0-23)
â â ââââââââââââââ day of month (1-31)
â â â ââââââââââââââ month (1-12)
â â â â ââââââââââââââ day of week (0-7, 0 and 7 = Sunday)
â â â â â
* * * * *
Common Schedules
0 8 * * *â Every day at 8 AM0 9 * * 1â Every Monday at 9 AM*/30 * * * *â Every 30 minutes0 0 1 * *â First day of each month
Example Automations
Daily News Digest
{
"schedule": "0 7 * * *",
"action": "Search for top tech news and send a 5-bullet summary",
"channel": "whatsapp"
}
Weekly Project Report
{
"schedule": "0 17 * * 5",
"action": "Read my project-notes.md and generate a weekly progress summary",
"channel": "slack"
}
Periodic Website Check
{
"schedule": "0 */4 * * *",
"action": "Check if example.com is responding and alert me if it's down",
"channel": "telegram"
}
Morning Motivation
{
"schedule": "0 6 * * *",
"action": "Send me an inspiring quote and a reminder of my top 3 goals from goals.md",
"channel": "whatsapp"
}
Tips
- Use natural language for the action â OpenClaw interprets it like a regular message
- Cron jobs have full access to your configured skills and tools
- Test your action by sending it as a regular message first
- Check timezone settings in your configuration
AIã¢ã·ã¹ã¿ã³ãã®æºåã¯ã§ããŸãããïŒ
仿¥ããClaw for Allãå§ããŸããããã»ããã¢ããäžèŠãã¿ãŒããã«äžèŠãç»é²ããã ãã§ãã䜿ããŸãã
ã¯ãããé¢é£ã¬ã€ã
Understanding OpenClaw Skills: The Complete Guide
Learn how Skills work in OpenClaw â markdown-based instruction files that teach your AI new capabilities.
How to Create Custom OpenClaw Skills
Write your own SKILL.md files to teach OpenClaw exactly what you need.
Top 25 OpenClaw AgentSkills You Should Enable
The most useful built-in and community skills for OpenClaw, from web search to file management.