get-convex/agent-skills1 file

Convex Crons

Add recurring scheduled jobs (crons) to the Convex app.

Specification
Skill ID
get-convex/agent-skills/convex-crons
Publisher
get-convex
Repository
agent-skills
Installs
380
Files
1
Synced
Sep 16, 2026
How to use it

Open any RiverX project, open the Skills panel in the chat, and search for this identifier. The files are fetched from the source repository at install time.

get-convex/agent-skills/convex-cronsInstalls these files
  • SKILL.md

What this skill tells the agent

<!-- GENERATED from convex-agents content/capabilities/crons.json — do not edit by hand. -->

Add scheduled jobs (crons)

Define recurring jobs in convex/crons.ts targeting internal functions, with sane intervals and idempotent handlers.

Workflow

  1. Create convex/crons.ts with cronJobs().
  2. Schedule internal functions (never public api.*) at the right interval.
  3. Make handlers idempotent (safe to re-run); keep each run small.
  4. Verify the job appears in the dashboard schedule.

Rules

  • Schedule internal. functions, never api..
  • Keep cron handlers small + idempotent.
  • Don't poll tight intervals for things a subscription can push.

More from get-convex