Add three new automations: FreshRSS digest, birthday tracker, home stack monitor
- FreshRSS Smart Digest: Daily AI-ranked RSS summary at 7 AM - Birthday Tracker: Smart reminders for family birthdays with gift suggestions - Home Stack Monitor: Health checks every 15 min with self-healing attempts All cron jobs configured and ready to run. Telegram bot token saved to .env
This commit is contained in:
34
automations/cron-setup.txt
Normal file
34
automations/cron-setup.txt
Normal file
@@ -0,0 +1,34 @@
|
||||
# OpenClaw Automations Cron Setup
|
||||
# Add these via: openclaw cron add --name "..." --schedule "..." --exec "..."
|
||||
|
||||
# === FRESHRSS SMART DIGEST ===
|
||||
# Daily at 7:00 AM - AI-ranked RSS summary
|
||||
# openclaw cron add \
|
||||
# --name "FreshRSS Daily Digest" \
|
||||
# --schedule "0 7 * * *" \
|
||||
# --exec "/home/openclaw/.openclaw/workspace/automations/freshrss-digest/daily-digest.sh"
|
||||
|
||||
# === BIRTHDAY TRACKER ===
|
||||
# Daily at 9:00 AM - Check for upcoming birthdays
|
||||
# openclaw cron add \
|
||||
# --name "Birthday Tracker Check" \
|
||||
# --schedule "0 9 * * *" \
|
||||
# --exec "/home/openclaw/.openclaw/workspace/automations/birthday-tracker/birthday-tracker.sh check"
|
||||
|
||||
# === HOME STACK MONITOR ===
|
||||
# Every 15 minutes - Health checks + self-healing
|
||||
# openclaw cron add \
|
||||
# --name "Home Stack Monitor" \
|
||||
# --schedule "*/15 * * * *" \
|
||||
# --exec "/home/openclaw/.openclaw/workspace/automations/home-stack-monitor/monitor.sh check"
|
||||
|
||||
# === HOME STACK DAILY REPORT ===
|
||||
# Daily at 8:00 AM - Summary of day's health
|
||||
# openclaw cron add \
|
||||
# --name "Home Stack Daily Report" \
|
||||
# --schedule "0 8 * * *" \
|
||||
# --exec "/home/openclaw/.openclaw/workspace/automations/home-stack-monitor/monitor.sh report"
|
||||
|
||||
# === WEEKLY BRIEFING (Existing) ===
|
||||
# Weekend AI news digest
|
||||
# Already configured separately
|
||||
Reference in New Issue
Block a user