#!/bin/bash
# Call Shay when Louise completes marketing tasks
# Usage: ./notify-shay-call.sh "message"

MESSAGE="$1"
PHONE="+61412297380"

if [ -z "$MESSAGE" ]; then
  MESSAGE="Hey Shay, Louise has finished her marketing tasks. Check the Marketing topic for results."
fi

cd ~/.openclaw/workspace/skills/twilio-calling
node scripts/make-call.js "$PHONE" "$MESSAGE" "notification"
