- 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
16 lines
448 B
Bash
Executable File
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"
|