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