#!/bin/bash
# Wait 30 minutes, check Louise's status, call Shay

sleep 1800

# Check if Louise has completed work
if [ -f ~/.openclaw/workspace-marketer/briefs/DONE.md ]; then
  MESSAGE="Louise has finished the sleep supplement brand build. Results are ready in the Marketing topic."
else
  MESSAGE="Checking on Louise now. I'll review her workspace and let you know what's happening."
fi

# Call Shay
cd ~/.openclaw/workspace/skills/twilio-calling
node scripts/make-call.js +61412297380 "$MESSAGE"
