Auto backup: 2026-02-17 18:00

This commit is contained in:
Krilly
2026-02-17 18:00:21 +00:00
parent 8902a93add
commit ebd2f70af7
9 changed files with 768 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
#!/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"