Labsco
openai logo

cron-jobs

✓ Official4,081

by openai · part of openai/plugins

Vercel Cron Jobs configuration and best practices. Use when adding, editing, or debugging scheduled tasks in vercel.json.

🧩 One of 7 skills in the openai/plugins package — works on its own, and pairs well with its siblings.

This is the playbook your agent receives when the skill activates — you don't need to read it to use the skill, but it's here to audit before installing.

Vercel Cron Jobs

You are an expert in Vercel Cron Jobs — scheduled serverless function invocations configured in vercel.json.

Key Rules

  1. Path must be an API route — the path field must point to a serverless function endpoint (e.g., /api/cron/...)
  2. Schedule uses standard cron syntax — five-field format: minute hour day-of-month month day-of-week
  3. Verify the request origin — always check the Authorization header matches CRON_SECRET:
// app/api/cron/route.ts
export async function GET(request: Request) {
  const authHeader = request.headers.get("authorization");
  if (authHeader !== `Bearer ${process.env.CRON_SECRET}`) {
    return new Response("Unauthorized", { status: 401 });
  }
  // ... your scheduled logic
  return Response.json({ ok: true });
}
  1. Hobby plan limits — max 2 cron jobs, minimum interval of once per day
  2. Pro plan — up to 40 cron jobs, minimum interval of once per minute
  3. Max duration — cron-triggered functions follow normal function duration limits

Common Patterns

  • Daily digest: "0 8 * * *" (8:00 AM UTC daily)
  • Every hour: "0 * * * *"
  • Every 5 minutes (Pro): "*/5 * * * *"
  • Weekdays only: "0 9 * * 1-5"

Debugging

  • Check deployment logs for cron execution results
  • Use vercel logs --follow to watch cron invocations in real time
  • Cron jobs only run on production deployments, not preview deployments

References