Install
openclaw skills install axiom-cron-whispererCron expression explainer — translate cron syntax to human language (English or French). Use when you need to understand, document, or validate a cron expression. Pure stdlib, no LLM.
openclaw skills install axiom-cron-whispererVersion: 0.1.2 Axioma Tools
Translates cron expressions into human-readable explanations.
0 9 * * 1-5 → 'At 09:00, Monday through Friday'python3 axiom_cron_whisperer.py "0 9 * * 1-5"
python3 axiom_cron_whisperer.py "*/15 * * * *" --lang fr
python3 axiom_cron_whisperer.py "0 9 * * 1-5" --validate
from axiom_cron_whisperer import explain, validate
explain('0 9 * * 1-5') # 'At 09:00, Monday through Friday'
validate('not a cron') # False
| Check | Status |
|---|---|
| Unit tests | 17 cases |
| Performance | <100ms |
| Security | Pure stdlib, no injection |
| Determinism | Byte-to-byte stable |
| License | Apache-2.0 |
Last updated: 2026-06-14