convex-cron-jobs

Schedule and manage recurring Convex functions with interval or cron timing.

Updated Apr 12, 2026
One-click install
npx skills add https://github.com/althof3/TCG-auction --skill convex-cron-jobs-althof3
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: convex-cron-jobs
Source: https://github.com/althof3/TCG-auction/tree/main/.agent/skills/convex-cron-jobs
Command: npx skills add https://github.com/althof3/TCG-auction --skill convex-cron-jobs-althof3

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Convex cron jobs provide a reliable way to schedule recurring functions within Convex apps, replacing ad-hoc timers with a centralized, auditable mechanism for background work.

Core Features & Use Cases

  • Schedule recurring functions with interval-based or cron expression timing.
  • Automatic retries, monitoring, and dashboards to track job health.
  • Use cases include periodic data sync, cleanup tasks, report generation, and maintenance automation in Convex deployments.

Quick Start

Configure a daily cron to run internal.reports.dailySummary at UTC midnight to generate a summary report.

Frequently Asked Questions about convex-cron-jobs

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

FAQPage Schema
How do I schedule recurring background tasks in Convex?

Schedule recurring Convex functions using interval or cron expression timing via convex/server cronJobs. This provides a centralized, auditable mechanism for background work with automatic retries and monitoring.

What's the best way to automate daily reports and data syncs in Convex deployments?

Automating daily reports and data syncs in Convex deployments is best handled by scheduling recurring internal API functions with cron jobs, which provide automatic retries, logging, and health tracking dashboards.

Can I use cron expressions for maintenance windows and cleanup jobs in Convex?

Yes, you can use cron expressions for maintenance windows and cleanup jobs in Convex. The scheduling system supports both interval-based and cron expression timing to automate these recurring background tasks reliably.

Do I need internal API functions to secure scheduled Convex cron jobs?

Yes, securing scheduled Convex cron jobs requires all cron actions to invoke internal API functions. This architectural constraint ensures background tasks like cleanup jobs and daily reports execute safely within your deployment.

Why replace ad-hoc timers with Convex cron jobs for background work?

Replacing ad-hoc timers with Convex cron jobs provides a centralized, auditable mechanism for background work, adding automatic retries, logging, batching, and dashboard monitoring to track job health across deployments.