Operations
Cron job
A cron job is a scheduled task that runs at fixed times or intervals — every hour, every day at 9am UTC, every Monday. The backbone of polling workflows and scheduled batch operations. Aiprosol's 10 AI agents run on a daily 9am UTC cron.
More detail
Cron syntax: `0 9 * * *` = every day at 9am. `*/15 * * * *` = every 15 minutes. Implementation: Vercel cron, GitHub Actions schedule, Cloudflare Workers, or n8n's scheduleTrigger node. Best practice: each cron job has a failure alert, success log, and exclusive-execution lock (so overlapping runs don't double-fire).
