Skills & Customization
ā°
Automating Tasks with OpenClaw Cron Scheduling
Set up recurring automated tasks ā daily reports, periodic checks, and scheduled workflows.
5 min read|
cronautomationscheduling
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
cronautomationschedulingrecurring tasksopenclaw cron
Ready for your AI assistant?
Get started with Claw for All today. No setup, no terminal, just sign up and go.
Get StartedPreviousConfiguring Skill Triggers, Tools, and InstructionsNextWeb Browsing and Research with OpenClaw
Related Guides
š7 min
Understanding OpenClaw Skills: The Complete Guide
Learn how Skills work in OpenClaw ā markdown-based instruction files that teach your AI new capabilities.
āļø6 min
How to Create Custom OpenClaw Skills
Write your own SKILL.md files to teach OpenClaw exactly what you need.
ā8 min
Top 25 OpenClaw AgentSkills You Should Enable
The most useful built-in and community skills for OpenClaw, from web search to file management.