feat: harden A2A funnel and paid proposal intake
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 7s

This commit is contained in:
OG T
2026-06-11 11:28:08 +08:00
parent a1856d08bc
commit 745ff300b5
128 changed files with 3265 additions and 853 deletions

View File

@@ -1,11 +1,13 @@
#!/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 http://192.168.0.188:3004/api/admin/simulate
curl -X POST "${BASE_URL}/api/admin/simulate"
echo ""
sleep 5
done