Constantly Monitor

Set up a recurring, self-healing wake loop that re-invokes you every N minutes to run a user-defined task (poll a log, watch a job, babysit a process), then go idle until the next tick. Uses a recurring CronCreate job as the wake trigger — survives rate-limit windows because each scheduled fire is independent (a wake lost to a quota window is picked up by the next). Use for constant/periodic monitoring where you must keep checking on a fixed cadence. Do NOT use for a single bounded wait (use /sleep-gate), for waking the instant a specific event happens (use Monitor / a backgrounded `until` loop), or for sub-minute cadence (cron is minute-granular).

jonbond5 Updated

File contents

jonbond5/claude-code-skills/tree/main/plugins/agent-waits/skills/constantly-monitor commit b64f43816e

Frequently asked questions

npx skillmds@latest add jonbond5/constantly-monitor