parse_cron
Parse cron expressions to generate plain English descriptions of when they fire, supporting standard fields and extensions like L, W, #, and named months/days.
Instructions
Parse a cron expression and return a human-readable description of when it fires. Supports 5-field standard cron (min hour dom month dow) plus extensions: L (last day/weekday), W (nearest weekday), # (nth weekday), and named months/days (JAN..DEC, SUN..SAT). Use this to explain any cron schedule in plain English.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| expression | Yes | The cron expression to parse, e.g. "*/5 * * * *" or "0 9 * * 1-5". |