build: fixed script to work with agent changes
CI / helm (push) Successful in 36s
CI / push-validation (push) Successful in 27s
CI / benchmark-publish (push) Failing after 59s
CI / lint (push) Successful in 57s
CI / build (push) Successful in 54s
CI / quality (push) Successful in 1m21s
CI / security (push) Successful in 1m37s
CI / typecheck (push) Successful in 1m37s
CI / integration_tests (push) Failing after 3m37s
CI / e2e_tests (push) Successful in 3m45s
CI / unit_tests (push) Failing after 4m48s
CI / docker (push) Has been skipped
CI / coverage (push) Successful in 11m2s
CI / status-check (push) Failing after 3s
CI / benchmark-publish (pull_request) Has been skipped
CI / push-validation (pull_request) Successful in 39s
CI / helm (pull_request) Successful in 42s
CI / build (pull_request) Successful in 1m1s
CI / lint (pull_request) Successful in 1m34s
CI / security (pull_request) Successful in 1m43s
CI / typecheck (pull_request) Successful in 1m46s
CI / quality (pull_request) Successful in 1m45s
CI / integration_tests (pull_request) Failing after 3m53s
CI / e2e_tests (pull_request) Successful in 4m46s
CI / unit_tests (pull_request) Failing after 4m58s
CI / docker (pull_request) Has been skipped
CI / coverage (pull_request) Successful in 12m32s
CI / status-check (pull_request) Failing after 3s

This commit is contained in:
2026-04-27 13:02:30 -04:00
parent 88925e69cd
commit 514d61c63c
+2 -2
View File
@@ -2,7 +2,7 @@
#
# opencode-builder.sh
#
# Launches an OpenCode server, creates a session with the product-builder
# Launches an OpenCode server, creates a session with the auto-agents
# agent, and continuously sends "continue" messages in an infinite loop.
#
# Signal handling:
@@ -114,7 +114,7 @@ log "Creating session..."
SESSION_ID=$(
curl -sf -X POST "${BASE}/session" \
-H "Content-Type: application/json" \
-d '{"title":"product-builder-auto"}' \
-d '{"title":"auto-agents"}' \
| jq -r '.id'
) || die "Failed to create session"