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.
Decision snapshot
Is this a fit?
Developers using plugins, Includes SKILL.md, Reusable instructions
Compatibility not yet detected.
Permission behavior not yet detected.
Copy skill directory
19 days ago
No specific cautions were detected. Review the source and requested permissions before installing.
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. See how SkillIndex evaluates profiles.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Developers using plugins
Declared skill metadata
- Source file: plugins/vercel/skills/cron-jobs/SKILL.md
These fields retain source and confidence evidence from the indexed SKILL.md.
Compatibility and setup
- 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
Verified compatibility and discovery
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.
Project health auto-fetched from the source repository.
Maintain this resource?
Review this source-backed profile, send a correction with evidence, or link to it from your documentation. Claims verify your relationship to the project; profile facts still require source evidence and editorial review.