feat: Scheduled Execution with Cron and Retry Handling

This commit is contained in:
OpenVelo Agent
2026-08-04 20:48:13 +00:00
parent abbfad76dc
commit 1a5c6c5c26
19 changed files with 451 additions and 185 deletions
+10
View File
@@ -20,4 +20,14 @@ if ! head -n 1 "${CRON_FILE}" | grep -qE '^[A-Z_]+='; then
exit 1
fi
if ! grep -q '/usr/local/bin/run-bot.sh' "${CRON_FILE}"; then
echo "install-cron: ${CRON_FILE} must invoke /usr/local/bin/run-bot.sh" >&2
exit 1
fi
if ! grep -qE '/proc/1/fd/1' "${CRON_FILE}"; then
echo "install-cron: ${CRON_FILE} must redirect output to /proc/1/fd/1" >&2
exit 1
fi
echo "install-cron: ${CRON_FILE} installed (mode 0644)"