skills/cron/SKILL.md
Manage recurring scheduled tasks — supports sub-minute intervals via betaclaw's internal scheduler, and minute-level tasks via system crontab
npx skillsauth add Rawknee-69/Beta-Claw cronInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Two scheduling systems are available. Choose the right one based on the interval:
Use this for any interval, including sub-minute (every 30 seconds, every 5 minutes, etc.). Tasks run inside betaclaw and can send messages back to the user.
┌──────── second (0-59)
│ ┌────── minute (0-59)
│ │ ┌──── hour (0-23)
│ │ │ ┌── day-of-month (1-31)
│ │ │ │ ┌ month (1-12)
│ │ │ │ │ ┌ day-of-week (0-7, 0=Sun)
│ │ │ │ │ │
* * * * * *
Common examples:
*/30 * * * * *0 * * * * *0 */5 * * * *0 0 * * * *0 0 9 * * *0 0 8 * * 1-5exec: betaclaw schedule add --cron "*/30 * * * * *" --name "check-in" --instruction "Send a warm check-in message to the user" --group GROUP_ID
Replace GROUP_ID with the actual group/chat JID (e.g. 48434866319368@lid).
If sending to the CLI, use --group default.
exec: betaclaw schedule list
exec: betaclaw schedule remove TASK_ID_OR_NAME
Use the ID prefix (first 8 chars) or the exact task name.
Use this for OS-level commands that don't need to talk back to the user (backups, scripts, etc.). Minimum interval is 1 minute — cannot do sub-minute.
exec: crontab -lexec: (crontab -l 2>/dev/null; echo "*/5 * * * * /path/to/script.sh") | crontab -exec: crontab -l | grep -v "PATTERN" | crontab -Replace PATTERN with a unique string from the entry to remove.
| Need | Use | |------|-----| | Check in with user every 30s | betaclaw internal scheduler | | Send daily reminder via WhatsApp | betaclaw internal scheduler | | Run a backup script every hour | System crontab | | Sub-minute anything | betaclaw internal scheduler |
development
Search the web and summarize results
development
Send messages via Telegram Bot API
data-ai
Show system health, active models, channels, and skills
tools
Full betaclaw installation and onboarding wizard