#!/bin/bash # RedFlag Agent Build Script # Builds agent binary (public key fetched from server at runtime) set -e echo "🔨 RedFlag Agent Build" echo "=====================" # Build agent echo "Building agent..." cd aggregator-agent go build \ -o redflag-agent \ ./cmd/agent cd .. echo "✅ Agent build complete!" echo " Binary: aggregator-agent/redflag-agent" echo "" echo "â„šī¸ Note: Agent will fetch the server's public key automatically at startup"