Help us improve
Share bugs, ideas, or general feedback.
From cron-scheduler
Validates cron expressions (5/6 fields + extended syntax), explains in plain English, shows next 10 runs, frequency, issues/timezone impacts, suggestions, and 30-day calendar.
npx claudepluginhub rohitg00/awesome-claude-code-toolkit --plugin cron-schedulerHow this command is triggered — by the user, by Claude, or both
Slash command
/cron-scheduler:validate-scheduleThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /validate-schedule - Validate Cron Schedule Validate and explain a cron schedule expression. ## Steps 1. Take the cron expression from the user (5 or 6 fields) 2. Parse each field: minute, hour, day of month, month, day of week 3. Validate syntax: check for valid ranges, step values, and special characters 4. Detect common mistakes: day/month confusion, 0-indexed vs 1-indexed weekdays 5. Translate the expression to plain English description 6. Calculate the next 10 execution times based on the current date 7. Calculate the frequency: how many times per day, week, month 8. Identify pote...
/cronDesigns, builds, and debugs scheduled tasks and recurring job systems using cron expressions and schedulers like BullMQ, Celery Beat, Quartz. Outputs schedule registry, scheduler setup, idempotency helpers, and monitoring files.
/modal-scheduleConfigures scheduled Modal functions using cron expressions or periods with optional timezone, including best practices for error handling, retries, and resources.
/scheduleManages scheduled workflow jobs — add via guided wizard, view dashboard, list, enable, disable, remove, and inspect logs.
/jobsManages cron jobs for the heartbeat daemon: list all jobs, create interactively, edit, or delete scheduled tasks in the project jobs directory.
/schedule-claudeSets up scheduled Claude Code jobs on macOS using launchd for the specified task, creates wrapper script and plist, and tests the schedule.
/cronManages crontab jobs for automatic brain database sync: install with optional interval (1-60 min), check status, or remove. Uses marker for safe management.
Share bugs, ideas, or general feedback.
Validate and explain a cron schedule expression.