agentsclimarketplace

Cron health

Skill LukeJMadden/Veltrix-skills/skills/operations/cron-health

16 business operations skills for Claude Code, Cursor, Codex and AI agents. Finance, sales, strategy, customer success, product, procurement plus 13 task profiles. Built by Veltrix Collective.

Install
npx -y skills add LukeJMadden/Veltrix-skills --skill cron-health

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Scheduled task monitoring skill. Use when checking cron job health, diagnosing missed jobs, or setting up monitoring.

SKILL.md

1.5 KB, as published. Nobody here has run it

Monitor scheduled tasks and ensure nothing runs silently broken.

What to Track Per Job

FieldDescription
NameJob identifier
ScheduleCron expression
Last runTimestamp of most recent execution
Last statusSuccess or failure
DurationHow long it took
OutputKey metrics or error message

Health Check Pattern

For each scheduled job:

  1. Has it run in the expected window? (compare schedule vs last_run)
  2. Did it succeed? (check status)
  3. Was the duration normal? (compare vs 7-day average)
  4. Did it produce expected output? (records_processed > 0)

Alert Conditions

  • Missed run — job didn't execute within 2× its scheduled interval
  • Consecutive failures — same job failed 3+ times in a row
  • Duration anomaly — took 3× longer than average
  • Zero output — ran successfully but processed 0 records (may indicate upstream data issue)

Daily Summary Format

Cron jobs (24h): X ok, Y failed
  Failed:
  • job_name: error description
  Slow:
  • job_name: took Xms (avg: Yms)

Safety: Before Restart

Before restarting any service, check:

  1. Are any cron jobs currently running?
  2. Are any scheduled to run in the next 5 minutes?
  3. If yes → defer the restart until the window is clear
  4. If no → safe to restart

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.