cron_next
Compute the next scheduled run times for any standard 5-field cron expression or alias, starting from a specified UTC time and returning a configurable number of future runs.
Instructions
Compute the next N runs of a 5-field cron expression.
Supports the standard aliases: @hourly, @daily, @weekly,
@monthly, @yearly.
Args:
expression: Standard cron (e.g. "*/15 * * * *") or @alias
from_iso: ISO-8601 starting point in UTC. Defaults to "now".
count: Number of runs to return, 1–100 (default 5)
Returns: dict with keys: expression, runs (list of ISO timestamps), count
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | ||
| from_iso | No | ||
| expression | Yes |