Skip to main content
Back to registry

convex-cron-jobs

waynesutton/convexskills

Schedule recurring functions for background tasks, cleanup jobs, data syncing, and automated workflows in Convex applications.

Installs1
Install command
npx skills add https://github.com/waynesutton/convexskills --skill convex-cron-jobs
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Schedule recurring functions for background tasks, cleanup jobs, data syncing, and automated workflows in Convex applications. Before implementing, do not assume; fetch the latest documentation: Convex cron jobs allow you to schedule functions to run at regular intervals or specific times. Key features: Use crons.interval for simple recurring tasks: Use crons.cron for precise scheduling with cron expressions: Common patterns: Cron jobs should call internal functions for security: Pass static arguments to cron jobs: Add logging to track cron job execution: Handle large datasets in batches to avoid timeouts: Use actions for external API calls: - Primary: - Scheduling Overview: - Scheduled Functions: - For broader context: - Run functions on a fixed schedule - Support for interval-based and cron expression scheduling - Automatic retries on failure - Monitoring via the Convex dashboard - * * * * * - Every minute - 0 * * * * - Every hour - 0 0 * * * - Every day at midnight - 0 0 * * 0 - Every Sunday at midnight - 0 0 1 * * - First day of every month - */5 * * * * - Every 5 minutes - 0 9-17 * * 1-5 - Every hour from 9 AM to 5 PM, Monday through Friday - Never run npx convex deploy unless explicitly instructed - Never run any git commands unless explicitly instructed - Only use crons.interval or crons.cron methods, not deprecated helpers - Always call internal functions from cron...

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does convex-cron-jobs do?

Schedule recurring functions for background tasks, cleanup jobs, data syncing, and automated workflows in Convex applications.

Is convex-cron-jobs good?

convex-cron-jobs does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does convex-cron-jobs work with?

convex-cron-jobs currently lists compatibility with codex, gemini-cli, opencode, cursor, github-copilot, claude-code.

What are alternatives to convex-cron-jobs?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install convex-cron-jobs?

npx skills add https://github.com/waynesutton/convexskills --skill convex-cron-jobs

Related skills

More from waynesutton/convexskills

Related skills

Alternatives in Software Engineering