cron-jobs Skill
Vercel Cron Jobs configuration and best practices. Use when adding, editing, or debugging scheduled tasks in vercel.json. Published by openai in plugins.
What is cron-jobs Skill?
Vercel Cron Jobs configuration and best practices. Use when adding, editing, or debugging scheduled tasks in vercel.json. Published by openai in plugins. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Developers using plugins
Technical details
- Install or run with Copy skill directory
When to use cron-jobs Skill
- Use it for developers using plugins.
Built with
Editorial notes
Source
- Creator: openai
- Repository: openai/plugins
- Skill file: plugins/vercel/skills/cron-jobs/SKILL.md
What it does
Vercel Cron Jobs configuration and best practices. Use when adding, editing, or debugging scheduled tasks in vercel.json.
Skill instructions
Vercel Cron Jobs You are an expert in Vercel Cron Jobs — scheduled serverless function invocations configured in vercel.json. Configuration Cron jobs are defined in the crons array of vercel.json: json { "crons": [ { "path": "/api/cron/daily-digest", "schedule": "0 8 " } ] } 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 CRONSECRET: ts // app/api/cron/route.ts export async function GET(request: Request) { const authHeader = request.headers.get("authorization"); if (authHeader !== Bearer ${process.env.CRONSECRET}) { return new Response("Unauthorized", { status: 401 }); } // ... your scheduled logic return Response.json({ ok: true }); } 4. Hobby plan limits — max 2 cron jobs, minimum interval of once per day 5. Pro plan — up to 40 cron j
Explore related resources
Frequently asked questions
What is cron-jobs?
cron-jobs is a open-source AI agent skill with Copy skill directory. Vercel Cron Jobs configuration and best practices. Use when adding, editing, or debugging scheduled tasks in vercel.json.
Who is cron-jobs best for?
cron-jobs is best for reusing agent instructions, scripts, and references.
How do I install cron-jobs?
Install or run cron-jobs using Copy skill directory. Check cron-jobs for the latest setup command.
Is cron-jobs actively maintained?
cron-jobs may need a closer maintenance check before production use.
Auto-fetched from GitHub.