#!/bin/bash echo "🌊 Starting Great Swarm Simulation Loop 🌊" echo "Press Ctrl+C to stop the chaos." while true do echo "--- Triggering Simulation Cycle ---" curl -X POST http://192.168.0.188:3004/api/admin/simulate echo "" sleep 5 done