chimera cron add
Add a cron, event- or webhook-triggered job. `--verify` is what turns a scheduled job into a run the harness governs. `CronJob` has carried the field since the harness landed and nothing could write it — not this command, not the HTTP route — so for every user the gate was permanently unarmed.
Arguments
NAMEstrrequiredA human-readable name.
SCHEDULEstrrequiredCron expression, or an event/webhook name.
ACTIONstrrequiredWhat to do (task description / skill).
Options
--eventbooleanTreat SCHEDULE as an event name.
--webhookbooleanFire on POST /webhook/<SCHEDULE> (needs 'chimera serve').
--verifystrdefault:''Gate: shell command run in the job's folder after the dispatch (exit 0 to keep the work, non-zero to revert it). Empty = no gate, which is the previous behaviour.
--max-attemptsintdefault:1Attempts per dispatch. Worth raising only with --verify: without a gate nothing can tell a failed attempt from a finished one.