install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/cron-scheduler" ~/.claude/skills/majiayu000-claude-skill-registry-cron-scheduler && rm -rf "$T"
manifest:
skills/data/cron-scheduler/SKILL.mdsource content
Cron Scheduler Tool
Description
Parse, validate, and explain cron expressions. Calculate next run times and generate cron syntax.
Trigger
command/cron- User needs cron expression help
- User wants to schedule tasks
Usage
# Explain cron expression python scripts/cron_scheduler.py "0 9 * * 1-5" # Get next N run times python scripts/cron_scheduler.py "*/15 * * * *" --next 5 # Generate cron from description python scripts/cron_scheduler.py --generate "every day at 9am" # Validate expression python scripts/cron_scheduler.py "0 0 * * *" --validate
Tags
cron, scheduler, automation, time, jobs
Compatibility
- Codex: ✅
- Claude Code: ✅