Install
openclaw skills install @rwesmarter/cron-reliability-lawsHard rules for Cron reliability: Shell-First architecture, mandatory wrappers (flock/logging), and LLM constraints to prevent timeouts and token-waste.
openclaw skills install @rwesmarter/cron-reliability-lawsPurpose: To eliminate stochastic failures (timeouts, LLM hallucinations) and token-waste in scheduled tasks.
Any task that can be executed via a deterministic script MUST be a systemEvent calling a Shell-Wrapper.
agentTurn to "Run a script and tell me if it failed."systemEvent → Wrapper.sh → Logic.py/sh.Every shell-based cron job MUST be wrapped in a standardized handler that implements:
flock): Prevent job overlap and resource exhaustion.PATH and .env sourcing to prevent "Command not found".logs/cron/<job_name>.log.LLMs are permitted in crons ONLY for high-level reasoning (e.g., Reflection, Optimization).
isolated session target.lightContext: true to prevent token-bloat.Cron jobs must remain silent unless a failure occurs.
Every recurring task must be measurable.