Scheduler
Run jobs on a schedule: a weekly summary email, a nightly cleanup, a one-shot reminder. The scheduler runs inside your Wok's Postgres via pg_cron; there's no separate cron host to manage.
⚡
Click Scheduler on any Wok card in the dashboard for an in-browser CRUD panel: list active jobs, schedule a new one (name + cron expression + SQL command), and unschedule with one click.
Schedule a job (shipped)
The cp exposes scheduler CRUD over the same Bearer auth as the rest of your Wok: list jobs, create one (cron expression + SQL or function-invoke target), update, or delete.
Schedule weekly-summary to run every Monday at 09:00
on my Wok.Good for
- A weekly or daily summary email.
- Nightly cleanups (expire old rows, archive files).
- Reminders and follow-ups.
Roadmap
- Per-run tracking + failure alerts — today pg_cron logs runs to
cron.job_run_detailsinside your Wok, which you can SELECT. A surfaced "what fired and when" view, plus push alerts on failure, are on the roadmap.