From sundial-org-awesome-openclaw-skills-4
Creates Clawdbot cron jobs from natural language requests for recurring messages, reminders, and check-ins.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:cron-creatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create Clawdbot cron jobs automatically from natural language requests.
Create Clawdbot cron jobs automatically from natural language requests.
Run this in your terminal:
bash -c "$(curl -sL https://raw.githubusercontent.com/digitaladaption/cron-creator/main/install.sh)"
Or manually:
# Install skill
mkdir -p ~/.clawdbot/skills
git clone https://github.com/digitaladaption/cron-creator.git ~/.clawdbot/skills/cron-creator
# Configure and restart
clawdbot gateway restart
That's it! Then just say things like:
Say things like:
| You Say | What Happens |
|---|---|
| "Create a daily Ikigai reminder at 8:45am" | Creates daily 8:45am Ikigai journal prompt |
| "Remind me to drink water every 2 hours" | Creates hourly water reminder |
| "Set up a weekly check-in on Mondays at 9am" | Creates Monday 9am weekly review |
| "Wake me at 7am every day" | Creates daily 7am alarm/reminder |
| "Send me a quote every morning at 6:30" | Creates daily quote at 6:30am |
| You Say | Cron |
|---|---|
| "8am" | 0 8 * * * |
| "8:45am" | 45 8 * * * |
| "9pm" | 0 21 * * * |
| "noon" | 0 12 * * * |
| "midnight" | 0 0 * * * |
| You Say | Cron |
|---|---|
| "daily" / "every day" | Daily at specified time |
| "weekdays" | Mon-Fri at specified time |
| "mondays" / "every monday" | Weekly on Monday |
| "hourly" / "every hour" | Every hour at :00 |
| "every 2 hours" | 0 */2 * * * |
| "weekly" | Weekly (defaults to Monday) |
| "monthly" | Monthly (1st of month) |
Just mention the channel in your request:
Default: WhatsApp
The skill auto-generates appropriate messages:
| Type | Default Message |
|---|---|
| Ikigai | Morning journal with purpose, food, movement, connection, gratitude |
| Water | "💧 Time to drink water! Stay hydrated! 🚰" |
| Morning | "🌅 Good morning! Time for your daily check-in." |
| Evening | "🌙 Evening check-in! How was your day?" |
| Weekly | Weekly goals review |
| Default | "⏰ Your scheduled reminder is here!" |
SKILL.md - This documentationscripts/cron_creator.py - Natural language parserinstall.sh - Automatic installer scriptThe cron_creator.py script:
clawdbot cron add command# Test the parser
python3 scripts/cron_creator.py "Create a daily reminder at 8:45am"
# Output includes:
# - parsed time, frequency, channel
# - generated cron expression
# - full clawdbot cron add command
The install script automatically configures:
Skill not loading?
clawdbot skills list | grep cron
Cron not created?
# Check clawdbot is running
clawdbot status
# Check cron jobs
clawdbot cron list
Need to reinstall?
# Run install again
bash -c "$(curl -sL https://raw.githubusercontent.com/digitaladaption/cron-creator/main/install.sh)"
https://github.com/digitaladaption/cron-creator
Report issues or contribute there!
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4Schedules reliable reminders and periodic maintenance in OpenClaw using Cron and Heartbeat systems. Includes janitor cleanup for one-shot jobs.
Creates, monitors, diagnoses, and fixes OpenClaw cron tasks with natural language time parsing and common troubleshooting.
Manages durable crons/reminders with list, add, delete, pause, resume, reconcile, and OpenClaw import. Handles natural language creation and multi-language triggers.