Scheduler
Run jobs on a schedule: a weekly summary email, a nightly cleanup, a one-shot reminder. SQL jobs run inside your Wok's Postgres via pg_cron. Work that needs an external API or model runs in an Edge Function invoked by TellWang's scheduler.
⚡
The dashboard's Automations surface lists existing schedules. Choose Generate automation prompt, then use a connected coding client, the MCP tools, or the REST API to create and change managed jobs.
Schedule a job
The control plane exposes scheduler CRUD over the same Bearer auth as the rest of your Wok: list jobs, create one (cron expression + SQL or recurring Edge Function), update, or delete. Scheduled function requests receive a fresh service-role credential for that Wok; no bearer token is stored in the schedule body.
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.
See what ran
Every run is recorded in your own database. Query cron.job_run_details for what fired, when, how long it took, and whether it succeeded.