Automation
Automate tasks with OpenClaw.
Overview
OpenClaw supports automation through:
Cron Jobs
Schedule recurring tasks:
bash
# Daily summary at 9am
openclaw cron add "daily-summary" \
--schedule "0 9 * * *" \
--prompt "Summarize my messages from yesterday"Webhooks
Trigger actions from external services:
bash
# Create webhook endpoint
openclaw webhook create "github-notifications"Use Cases
Daily Summaries
Get a daily digest of activity:
bash
openclaw cron add "morning-briefing" \
--schedule "0 8 * * *" \
--prompt "Give me a morning briefing"Monitoring
Check system status periodically:
bash
openclaw cron add "health-check" \
--schedule "*/30 * * * *" \
--prompt "Check system health and alert if issues"External Integrations
Receive notifications from:
- GitHub
- CI/CD systems
- Monitoring tools
- Custom applications