What problem does it solve? Recurring automation jobs frequently fail in subtle ways: a bare "30m" schedule creates a one-shot job instead of a repeating one, watchdog scripts spam alerts on transient failures, and rollout branches execute CLI verbs that were never verified against the real binary. This Skill encodes measured recipes for building cron jobs and watchdog scripts that act only when a condition flips and stay silent otherwise. ## Core Features & Use Cases - Correct schedule strings: Enforces the "every 30m" prefix for recurring schedules and verifies the returned repeat field after job creation. - Watchdog pattern (no_agent + script): Deterministic scripts with silent-unless-action stdout discipline, exit 0 on transient failures, and idempotent ticks. - Version-gated rollout watchdogs: Marker files for one-time side effects, surgical port-based process replacement, and settings arming that runs exactly once. - Use Case: You want a job that checks every 30 minutes whether a CLI tool reached version 1.1.0 and, once it has, restarts the server on its port and arms its settings exactly once — without spamming alerts while offline. ## Quick Start Use the cron-watchdog-authoring skill to create a recurring Hermes cron job that watches for a tool version update and runs a silent rollout script.