From 98126a06f90c0dcc5b82b7ca25222502cacc7755 Mon Sep 17 00:00:00 2001 From: AmanTahiliani Date: Fri, 3 Jul 2026 23:53:13 -0400 Subject: [PATCH] docs(agents): mark agy adapter unreliable for headless dispatch Co-Authored-By: Claude Fable 5 --- .agents/harnesses.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.agents/harnesses.sh b/.agents/harnesses.sh index cef91c5..0142a2a 100644 --- a/.agents/harnesses.sh +++ b/.agents/harnesses.sh @@ -31,11 +31,13 @@ harness_cursor() { # Cursor CLI agent — composer-2.5, hea ( cd "$dir" && cursor-agent -p "$(cat "$prompt")" --model composer-2.5 --force --trust ) } -harness_agy() { # Antigravity CLI — Gemini 3.1 Pro, headless full-auto - # --new-project is required for --model to take effect (otherwise agy resumes the - # previous conversation and silently keeps its old model). +harness_agy() { # Antigravity CLI — UNRELIABLE headless (2026-07): with + # --new-project it ignores the prompt and asks to scaffold a project; without it, it + # resumes the previous conversation (silently keeping its old model — --model only + # applies to new conversations) and can hang past the print timeout. Do not trust for + # dispatch until fixed upstream; verify with a trivial prompt first. local dir="$1" prompt="$2" - ( cd "$dir" && agy --print --new-project --print-timeout 60m \ + ( cd "$dir" && agy --print --print-timeout 60m \ --model="Gemini 3.1 Pro (High)" --dangerously-skip-permissions "$(cat "$prompt")" ) }