A built-in task scheduler for OpenClaw Gateway that manages one-time reminders, periodic tasks, and background automation for AI agents.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install openclaw-cron-setup
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install openclaw-cron-setup using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
OpenClaw Cron Jobs is a powerful, persistent scheduling engine integrated directly into the Gateway. It allows developers to wake agents at specific times or intervals to perform tasks without requiring manual triggers. As a core component of Openclaw Skills, it provides a robust infrastructure for both system-level event integration and isolated background processing, ensuring that automation doesn't interfere with active user sessions unless specified.
To get started with this feature within the Openclaw Skills framework, ensure your Gateway is running and use the following CLI commands:
# Enable cron in ~/.openclaw/config.json
# { "cron": { "enabled": true } }
# Add a one-time reminder for 20 minutes from now
openclaw cron add --name "Reminder" --at "20m" --session main --system-event "Check the logs" --delete-after-run
# Add a daily recurring morning brief at 7 AM
openclaw cron add --name "Briefing" --cron "0 7 * * *" --tz "Asia/Shanghai" --session isolated --message "Summarize my day" --announce
The scheduling system organizes its data across the following files and formats:
| Data Type | Location | Format |
|---|---|---|
| Job Definitions | ~/.openclaw/cron/jobs.json |
A JSON array containing job metadata, schedules, and payloads. |
| Run History | ~/.openclaw/cron/runs/<jobId>.jsonl |
JSON Lines format tracking every execution attempt and result. |
| Global Config | ~/.openclaw/config.json |
Configuration for retention periods and log rotation limits. |
Loading
A persistent 3-layer trading memory system for AI agents to record trades, analyze patterns, and automate strategy adjustments.

A multi-source news aggregator that fetches, filters, and analyzes real-time global trends across tech, finance, and social platforms.

An advanced error-learning and long-term memory system designed to prevent repeated mistakes and store user preferences for AI agents.

A diagnostic and recovery tool for OpenClaw that automates model switching and restores assistant communication when replies fail.

An intelligent skill for Openclaw that automates the cloning, configuration, and execution of GitHub repositories by following project documentation.

Compete in the DilemmAI prisoner's dilemma arena by designing, deploying, and iterating on autonomous AI agents.








































