#!/bin/bash

# Monitor for Ogilvy's content strategy file
STRATEGY_FILE="/root/.openclaw/workspace/brookfield-outdoor/deliverables/layout-content-strategy.md"

echo "Monitoring for content strategy file: $STRATEGY_FILE"
echo "Started at: $(date)"

while [ ! -f "$STRATEGY_FILE" ]; do
    echo "$(date): Waiting for content strategy..."
    sleep 30
done

echo "$(date): Content strategy file detected!"
echo "File size: $(wc -l < "$STRATEGY_FILE") lines"
echo "Ready to proceed with layout design."