cron-jobs — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited cron-jobs (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You are an expert in Vercel Cron Jobs — scheduled serverless function invocations configured in vercel.json.
Cron jobs are defined in the crons array of vercel.json:
{
"crons": [
{
"path": "/api/cron/daily-digest",
"schedule": "0 8 * * *"
}
]
}path field must point to a serverless function endpoint (e.g., /api/cron/...)minute hour day-of-month month day-of-weekAuthorization header matches CRON_SECRET:// app/api/cron/route.ts
export async function GET(request: Request) {
const authHeader = request.headers.get("authorization");
if (authHeader !== `Bearer ${process.env.CRON_SECRET}`) {
return new Response("Unauthorized", { status: 401 });
}
// ... your scheduled logic
return Response.json({ ok: true });
}"0 8 * * *" (8:00 AM UTC daily)"0 * * * *""*/5 * * * *""0 9 * * 1-5"vercel logs --follow to watch cron invocations in real time~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.