cron-gen
Generate cron expressions from natural language
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/lxgicstudios/ai-cron-genCron Generator
"Every weekday at 9am" to "0 9 * * 1-5". Stop googling cron syntax.
Quick Start
npx ai-cron-gen "every monday at 3pm"
What It Does
- Converts plain English to cron expressions
- Explains what the cron does
- Validates existing cron syntax
- Shows next execution times
Usage Examples
# Generate from description
npx ai-cron-gen "first day of every month at midnight"
# Explain existing cron
npx ai-cron-gen --explain "0 */4 * * *"
# Get next 5 run times
npx ai-cron-gen "every 30 minutes" --next 5
Output
Expression: 0 9 * * 1-5
Meaning: At 09:00 on every day-of-week from Monday through Friday
Next runs:
- Mon Jan 29 09:00:00 2024
- Tue Jan 30 09:00:00 2024
Requirements
Node.js 18+. OPENAI_API_KEY required.
License
MIT. Free forever.
Built by LXGIC Studios
- GitHub: github.com/lxgicstudios/ai-cron-gen
- Twitter: @lxgicstudios
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-lxgicstudios-ai-cron-gen": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
script-gen
Generate package.json scripts with AI. Use when setting up npm scripts.
email-template-gen
Generate responsive email templates. Use when building transactional emails.
branch-namer
Generate descriptive git branch names from plain English. Use when you need a branch name that follows conventions.
cloudflare-gen
Generate Cloudflare Workers configuration and code. Use when building on the edge.
adr-writer
Generate Architecture Decision Records with AI. Use when documenting technical decisions.