build: Updated script to match the new agent code
CI / docker (push) Blocked by required conditions
CI / helm (push) Waiting to run
CI / push-validation (push) Waiting to run
CI / status-check (push) Blocked by required conditions
CI / unit_tests (push) Has started running
CI / benchmark-publish (push) Failing after 39s
CI / lint (push) Successful in 1m6s
CI / typecheck (push) Successful in 1m17s
CI / quality (push) Successful in 1m45s
CI / security (push) Successful in 2m27s
CI / coverage (push) Waiting to run
CI / build (push) Successful in 36s
CI / integration_tests (push) Failing after 7m7s
CI / e2e_tests (push) Successful in 8m2s

This commit is contained in:
2026-04-27 12:52:51 -04:00
parent d80352709c
commit fe30961990
+2 -2
View File
@@ -16,7 +16,7 @@ set -uo pipefail
PORT="${OPENCODE_PORT:-4096}"
HOST="${OPENCODE_HOST:-127.0.0.1}"
BASE="http://${HOST}:${PORT}"
AGENT="product-builder"
AGENT="auto-agents"
PROMPT="Complete the current project's milestones up to and including v3.7.0 to a production ready state"
HEALTH_TIMEOUT=60 # seconds to wait for the server to become healthy
@@ -157,7 +157,7 @@ send_message "$INIT_BODY"
log "Initial prompt complete."
# ── Continue loop ─────────────────────────────────────────────────────────
CONT_BODY=$(jq -nc '{parts: [{type: "text", text: "continue"}]}')
CONT_BODY=$(jq -nc --arg a "$AGENT" '{agent: $a, parts: [{type: "text", text: "continue with your mainloop, monitor the supervisors, keep them alive, and sleep in an infinite loop."}]}')
N=0
while ! $STOP_LOOP; do