cron-jobs

Configure Vercel cron entries in vercel.json for scheduled serverless tasks.

246|42|Updated Mar 4, 2026
One-click install
npx skills add https://github.com/vercel/vercel-plugin --skill cron-jobs-vercel
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cron-jobs
Source: https://github.com/vercel/vercel-plugin/tree/main/skills/cron-jobs
Command: npx skills add https://github.com/vercel/vercel-plugin --skill cron-jobs-vercel

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Configuring and maintaining reliable scheduled tasks for Vercel deployments can be error-prone and hard to audit, especially across multiple projects.

Core Features & Use Cases

  • Centralized cron configuration in vercel.json with clear schedules and API routes.
  • Guidance on limits, debugging, and best practices for Hobby and Pro plans.
  • Use Case: schedule daily data maintenance or periodic synchronization tasks to run automatically.

Quick Start

Define a cron entry in vercel.json with a path to an API route and a cron schedule, then deploy to run on the scheduled times.

Frequently Asked Questions about cron-jobs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I schedule recurring serverless tasks in Vercel?

You can schedule recurring serverless tasks in Vercel by defining cron entries in vercel.json, specifying a valid API route path and a standard cron schedule, then deploying the project to run tasks automatically.

What are the cron job limits for Vercel Hobby and Pro plans?

Vercel enforces plan-based limits for cron jobs, differing between Hobby and Pro plans. This Skill provides guidance on these specific limitations, helping you configure schedules and debug issues within your plan's constraints.

How do I configure vercel.json for automated API routes?

Configuring vercel.json for automated API routes requires adding a cron entry that maps a standard cron syntax schedule to a valid path pointing to your API route, centralizing your recurring task management.

Why is my Vercel cron job schedule not working correctly?

Vercel cron job failures often stem from invalid standard cron syntax or incorrect API route paths. This Skill helps debug recurring tasks by enforcing path validity and standard cron formatting during configuration.

Can I use vercel.json cron jobs for daily data maintenance?

Yes, you can use vercel.json cron jobs for daily data maintenance or periodic synchronization tasks. By automating these serverless schedules, your recurring data tasks will run automatically at the times you specify.