Files
agent-bounty-protocol/scripts/trigger-simulation.sh
OG T 745ff300b5
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 7s
feat: harden A2A funnel and paid proposal intake
2026-06-11 11:28:08 +08:00

14 lines
335 B
Bash
Executable File

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