convex-cron
Convexの機能を活用し、定期的なタスク、データ整理、通知、データ同期など、スケジュールに基づいて自動実行される様々なバックグラウンド処理を効率的に設定・管理するSkill。
📜 元の英語説明(参考)
Scheduled functions and cron jobs in Convex. Use when setting up recurring tasks, cleanup jobs, data syncing, scheduled notifications, or any background automation that runs on a schedule.
🇯🇵 日本人クリエイター向け解説
Convexの機能を活用し、定期的なタスク、データ整理、通知、データ同期など、スケジュールに基づいて自動実行される様々なバックグラウンド処理を効率的に設定・管理するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o convex-cron.zip https://jpskill.com/download/8729.zip && unzip -o convex-cron.zip && rm convex-cron.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/8729.zip -OutFile "$d\convex-cron.zip"; Expand-Archive "$d\convex-cron.zip" -DestinationPath $d -Force; ri "$d\convex-cron.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
convex-cron.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
convex-cronフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Convex Cron ジョブ
基本的な Cron の設定
// convex/crons.ts
import { cronJobs } from "convex/server";
import { internal } from "./_generated/api";
const crons = cronJobs();
// 毎時間実行
crons.interval(
"cleanup expired sessions",
{ hours: 1 },
internal.tasks.cleanupExpiredSessions,
{}
);
// 毎日 UTC の午前0時に実行
crons.cron(
"daily report",
"0 0 * * *",
internal.reports.generateDailyReport,
{}
);
export default crons;
Interval ベースのスケジュール
// 5分ごと
crons.interval("sync data", { minutes: 5 }, internal.sync.fetchData, {});
// 2時間ごと
crons.interval("cleanup temp", { hours: 2 }, internal.files.cleanup, {});
// 30秒ごと (最小)
crons.interval("health check", { seconds: 30 }, internal.monitoring.check, {});
Cron 式によるスケジュール
┌───────────── minute (0-59)
│ ┌───────────── hour (0-23)
│ │ ┌───────────── day of month (1-31)
│ │ │ ┌───────────── month (1-12)
│ │ │ │ ┌───────────── day of week (0-6, Sunday=0)
* * * * *
// 毎日 UTC の午前9時に実行
crons.cron("morning digest", "0 9 * * *", internal.notifications.morning, {});
// 毎週月曜日の午前8時に実行
crons.cron("weekly summary", "0 8 * * 1", internal.reports.weekly, {});
// 毎月1日の午前0時に実行
crons.cron("monthly billing", "0 0 1 * *", internal.billing.process, {});
// 15分ごと
crons.cron("frequent sync", "*/15 * * * *", internal.sync.run, {});
Cron のための Internal 関数
常に internal 関数を使用してください。
// convex/tasks.ts
import { internalMutation } from "./_generated/server";
import { v } from "convex/values";
export const cleanupExpiredSessions = internalMutation({
args: {},
returns: v.number(),
handler: async (ctx) => {
const oneHourAgo = Date.now() - 60 * 60 * 1000;
const expired = await ctx.db
.query("sessions")
.withIndex("by_lastActive")
.filter((q) => q.lt(q.field("lastActive"), oneHourAgo))
.collect();
for (const session of expired) {
await ctx.db.delete(session._id);
}
return expired.length;
},
});
引数付きの Cron
crons.interval(
"cleanup temp files",
{ hours: 1 },
internal.cleanup.byType,
{ fileType: "temp", maxAge: 3600000 }
);
crons.interval(
"cleanup cache files",
{ hours: 24 },
internal.cleanup.byType,
{ fileType: "cache", maxAge: 86400000 }
);
大規模データセットのバッチ処理
タイムアウトを避けるために、大規模なデータセットを処理します。
const BATCH_SIZE = 100;
export const processBatch = internalMutation({
args: { cursor: v.optional(v.string()) },
returns: v.null(),
handler: async (ctx, args) => {
const result = await ctx.db
.query("items")
.withIndex("by_status", (q) => q.eq("status", "pending"))
.paginate({ numItems: BATCH_SIZE, cursor: args.cursor ?? null });
for (const item of result.page) {
await ctx.db.patch(item._id, { status: "processed", processedAt: Date.now() });
}
// より多くのアイテムがある場合は、次のバッチをスケジュールします
if (!result.isDone) {
await ctx.scheduler.runAfter(0, internal.tasks.processBatch, {
cursor: result.continueCursor,
});
}
return null;
},
});
外部 API 呼び出し
外部 API には actions を使用します。
// convex/sync.ts
"use node";
import { internalAction, internalMutation } from "./_generated/server";
import { internal } from "./_generated/api";
import { v } from "convex/values";
export const syncExternalData = internalAction({
args: {},
returns: v.null(),
handler: async (ctx) => {
const response = await fetch("https://api.example.com/data", {
headers: { Authorization: `Bearer ${process.env.API_KEY}` },
});
const data = await response.json();
await ctx.runMutation(internal.sync.storeData, { data, syncedAt: Date.now() });
return null;
},
});
// In crons.ts
crons.interval("sync external", { minutes: 15 }, internal.sync.syncExternalData, {});
ロギングとモニタリング
export const cleanupWithLogging = internalMutation({
args: {},
returns: v.null(),
handler: async (ctx) => {
const startTime = Date.now();
let processedCount = 0;
try {
const items = await ctx.db.query("items")
.filter((q) => q.lt(q.field("expiresAt"), Date.now()))
.collect();
for (const item of items) {
await ctx.db.delete(item._id);
processedCount++;
}
await ctx.db.insert("cronLogs", {
jobName: "cleanup",
duration: Date.now() - startTime,
processedCount,
status: "success",
});
} catch (error) {
await ctx.db.insert("cronLogs", {
jobName: "cleanup",
duration: Date.now() - startTime,
processedCount,
status: "failed",
error: String(error),
});
throw error;
}
return null;
},
});
よくある落とし穴
- public 関数を使用する - 常に internal 関数を使用してください
- タイムゾーンを忘れる - すべての cron 式は UTC を使用します
- 長時間実行される mutations - バッチに分割します
- エラー処理の欠落 - デバッグのために失敗をログに記録します
参考文献
- Cron Jobs: https://docs.convex.dev/scheduling/cron-jobs
- Scheduling: https://docs.convex.dev/scheduling
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Convex Cron Jobs
Basic Cron Setup
// convex/crons.ts
import { cronJobs } from "convex/server";
import { internal } from "./_generated/api";
const crons = cronJobs();
// Run every hour
crons.interval(
"cleanup expired sessions",
{ hours: 1 },
internal.tasks.cleanupExpiredSessions,
{}
);
// Run every day at midnight UTC
crons.cron(
"daily report",
"0 0 * * *",
internal.reports.generateDailyReport,
{}
);
export default crons;
Interval-Based Scheduling
// Every 5 minutes
crons.interval("sync data", { minutes: 5 }, internal.sync.fetchData, {});
// Every 2 hours
crons.interval("cleanup temp", { hours: 2 }, internal.files.cleanup, {});
// Every 30 seconds (minimum)
crons.interval("health check", { seconds: 30 }, internal.monitoring.check, {});
Cron Expression Scheduling
┌───────────── minute (0-59)
│ ┌───────────── hour (0-23)
│ │ ┌───────────── day of month (1-31)
│ │ │ ┌───────────── month (1-12)
│ │ │ │ ┌───────────── day of week (0-6, Sunday=0)
* * * * *
// Every day at 9 AM UTC
crons.cron("morning digest", "0 9 * * *", internal.notifications.morning, {});
// Every Monday at 8 AM UTC
crons.cron("weekly summary", "0 8 * * 1", internal.reports.weekly, {});
// First day of month at midnight
crons.cron("monthly billing", "0 0 1 * *", internal.billing.process, {});
// Every 15 minutes
crons.cron("frequent sync", "*/15 * * * *", internal.sync.run, {});
Internal Functions for Crons
Always use internal functions:
// convex/tasks.ts
import { internalMutation } from "./_generated/server";
import { v } from "convex/values";
export const cleanupExpiredSessions = internalMutation({
args: {},
returns: v.number(),
handler: async (ctx) => {
const oneHourAgo = Date.now() - 60 * 60 * 1000;
const expired = await ctx.db
.query("sessions")
.withIndex("by_lastActive")
.filter((q) => q.lt(q.field("lastActive"), oneHourAgo))
.collect();
for (const session of expired) {
await ctx.db.delete(session._id);
}
return expired.length;
},
});
Crons with Arguments
crons.interval(
"cleanup temp files",
{ hours: 1 },
internal.cleanup.byType,
{ fileType: "temp", maxAge: 3600000 }
);
crons.interval(
"cleanup cache files",
{ hours: 24 },
internal.cleanup.byType,
{ fileType: "cache", maxAge: 86400000 }
);
Batching Large Datasets
Handle large datasets to avoid timeouts:
const BATCH_SIZE = 100;
export const processBatch = internalMutation({
args: { cursor: v.optional(v.string()) },
returns: v.null(),
handler: async (ctx, args) => {
const result = await ctx.db
.query("items")
.withIndex("by_status", (q) => q.eq("status", "pending"))
.paginate({ numItems: BATCH_SIZE, cursor: args.cursor ?? null });
for (const item of result.page) {
await ctx.db.patch(item._id, { status: "processed", processedAt: Date.now() });
}
// Schedule next batch if more items
if (!result.isDone) {
await ctx.scheduler.runAfter(0, internal.tasks.processBatch, {
cursor: result.continueCursor,
});
}
return null;
},
});
External API Calls
Use actions for external APIs:
// convex/sync.ts
"use node";
import { internalAction, internalMutation } from "./_generated/server";
import { internal } from "./_generated/api";
import { v } from "convex/values";
export const syncExternalData = internalAction({
args: {},
returns: v.null(),
handler: async (ctx) => {
const response = await fetch("https://api.example.com/data", {
headers: { Authorization: `Bearer ${process.env.API_KEY}` },
});
const data = await response.json();
await ctx.runMutation(internal.sync.storeData, { data, syncedAt: Date.now() });
return null;
},
});
// In crons.ts
crons.interval("sync external", { minutes: 15 }, internal.sync.syncExternalData, {});
Logging and Monitoring
export const cleanupWithLogging = internalMutation({
args: {},
returns: v.null(),
handler: async (ctx) => {
const startTime = Date.now();
let processedCount = 0;
try {
const items = await ctx.db.query("items")
.filter((q) => q.lt(q.field("expiresAt"), Date.now()))
.collect();
for (const item of items) {
await ctx.db.delete(item._id);
processedCount++;
}
await ctx.db.insert("cronLogs", {
jobName: "cleanup",
duration: Date.now() - startTime,
processedCount,
status: "success",
});
} catch (error) {
await ctx.db.insert("cronLogs", {
jobName: "cleanup",
duration: Date.now() - startTime,
processedCount,
status: "failed",
error: String(error),
});
throw error;
}
return null;
},
});
Common Pitfalls
- Using public functions - Always use internal functions
- Forgetting timezone - All cron expressions use UTC
- Long-running mutations - Break into batches
- Missing error handling - Log failures for debugging
References
- Cron Jobs: https://docs.convex.dev/scheduling/cron-jobs
- Scheduling: https://docs.convex.dev/scheduling