Files
openclaw-backups/automations/morning-briefing/morning-briefing.sh
2026-02-17 18:00:21 +00:00

16 lines
448 B
Bash

#!/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"