Cron Dashboard
View, manage, and debug OpenClaw cron jobs with status overview and health checks.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/sa9saq/cron-dashboardCron Dashboard
View and manage OpenClaw cron jobs at a glance.
Instructions
-
List all jobs:
openclaw cron listDisplay as table: Name | Schedule | Model | Status | Last Run | Next Run
-
Job details:
openclaw cron show <id>— full config, recent runs, output logs -
Health checks — Flag issues:
- ⚠️ Job hasn't run when expected (missed schedule)
- 🔴 Repeated failures (3+ consecutive)
- 🟡 Stale schedule (no runs in >24h for hourly jobs)
-
Quick actions:
openclaw cron create --name "task" --schedule "*/30 * * * *" --prompt "..." openclaw cron pause <id> openclaw cron resume <id> openclaw cron delete <id> -
Dashboard view (when asked for overview):
🕐 Cron Dashboard — 5 jobs ✅ Active (3) | Name | Schedule | Last Run | Next Run | |---------------|-------------|---------------|---------------| | email-check | */30 * * * | 5 min ago ✅ | in 25 min | ⏸️ Paused (1) | backup-daily | 0 2 * * * | 2 days ago | — | 🔴 Failing (1) | tweet-bot | 0 9 * * * | 1h ago ❌ | tomorrow 9:00 |
Cron Expression Cheat Sheet
| Expression | Meaning |
|---|---|
*/15 * * * * | Every 15 minutes |
0 */2 * * * | Every 2 hours |
0 9 * * 1-5 | Weekdays at 9 AM |
0 2 * * * | Daily at 2 AM |
0 0 1 * * | First of each month |
Troubleshooting
- Job not running: Check if paused; verify schedule with
crontab.guru - Repeated failures: Check
openclaw cron show <id>for error output - Consider heartbeat: For flexible-timing checks, use HEARTBEAT.md instead of cron
Requirements
- OpenClaw CLI installed and configured
- No API keys needed
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-sa9saq-cron-dashboard": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
threat-model
Threat modeling and attack scenario design. Identify risks before they become vulnerabilities. STRIDE, attack trees, risk matrix.
Sns Auto Poster
Schedule and automate social media posts to X/Twitter with cron-based queue management.
security-review
Comprehensive security review for code, configs, and operations. OWASP, prompt injection, crypto security. Auto-triggers on security-related changes.
Process Monitor
Monitor system processes, identify top CPU/memory consumers, and alert on resource thresholds.
Readme Generator
Auto-generate comprehensive README.md files by analyzing project structure and configuration.