Loading...
Loading...
Create Clawdbot cron jobs from natural language. Use when: users want to schedule recurring messages, reminders, or check-ins without using terminal commands. Examples: 'Create a daily reminder at 8am', 'Set up a weekly check-in on Mondays', 'Remind me to drink water every 2 hours'.
npx skill4agent add sundial-org/awesome-openclaw-skills cron-creatorbash -c "$(curl -sL https://raw.githubusercontent.com/digitaladaption/cron-creator/main/install.sh)"# 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| 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" | |
| "8:45am" | |
| "9pm" | |
| "noon" | |
| "midnight" | |
| 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" | |
| "weekly" | Weekly (defaults to Monday) |
| "monthly" | Monthly (1st of month) |
| 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.mdscripts/cron_creator.pyinstall.shcron_creator.pyclawdbot cron add# 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 commandclawdbot skills list | grep cron# Check clawdbot is running
clawdbot status
# Check cron jobs
clawdbot cron list# Run install again
bash -c "$(curl -sL https://raw.githubusercontent.com/digitaladaption/cron-creator/main/install.sh)"