# 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