Files
openclaw-backups/automations/morning-briefing/morning-briefing.sh
Krilly 2d85d3873d 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
2026-02-21 01:41:26 +00:00

16 lines
448 B
Bash
Executable File

#!/bin/bash
# Morning Briefing - Premium Version
# Calls OpenClaw agent to generate comprehensive briefing
set -e
echo "🌅 Morning Briefing Generator" >&2
echo "============================" >&2
# Get weather
WEATHER=$(curl -s "wttr.in/Perth?format=%l:+%c+%t+%h+wind:%w" 2>/dev/null || echo "Weather unavailable")
echo "Weather: $WEATHER" >&2
# Output just the weather for now - the agent will build the full briefing
echo "WEATHER=$WEATHER"