#!/usr/bin/env bash # Brand Monitoring Daily Digest # Runs: Mon, Wed, Fri at 09:00 # Collects new articles, runs pipeline, dispatches digest to Telegram #3688 set -e cd /opt/ai-os/products/ceo/brand-monitoring/shared/workflows echo "=== Brand Monitoring Daily Digest ===" echo "$(date '+%Y-%m-%d %H:%M:%S')" # Step 1: Collect fresh RSS python3 collect_rss.py # Step 2: Collect Social Media python3 collect_social.py # Step 3: Run pipeline (filter, score, sentiment, crisis gate) python3 pipeline.py # Step 4: Dispatch pending alerts as digest message python3 alert_dispatcher.py echo "=== Done ==="