You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but agy's --printtakes the prompt as its value. So --print swallowed the literal string --print-timeout, and the real prompt was never passed. The agent received --print-timeout as its
instruction.
Owner-specified corrected form keeps all flags before the final --print and prompt value:
--print-timeout is deliberately omitted until its ordering is separately proven.
Observed
Reproduced during 0.0.4 release orchestration, 2026-08-03: the launched agent went off investigating --print-timeout as though it were the task; a second attempt returned a bare greeting. No error —
the invocation was well-formed, it just meant something else.
Why this is p1 now
The documentation authoring lane was just repointed to Antigravity (#1082, PR #1086) because agy runs on the owner's Google subscription rather than billing OpenRouter credit. Every future
docs slice therefore goes through this adapter.
It also silently degraded any Antigravity probe elsewhere — including the research_extraction
lane and agentic:antigravity-evidence — and the failure presented as "the model gave a useless
answer" rather than as a malformed command.
Acceptance
The adapter emits --print last, with the prompt as its value, and never places another flag immediately after --print
A test asserts the emitted argv passes the prompt as --print's value and that no flag follows --print
An Antigravity probe returns a response that demonstrably answers the prompt, not the flag
agentic:antigravity-evidence is re-verified against the corrected argv
Summary
.llm/tools/agentic/runtime/adapters/antigravity-adapter.tsemitted:but
agy's--printtakes the prompt as its value. So--printswallowed the literal string--print-timeout, and the real prompt was never passed. The agent received--print-timeoutas itsinstruction.
Owner-specified corrected form keeps all flags before the final
--printand prompt value:--print-timeoutis deliberately omitted until its ordering is separately proven.Observed
Reproduced during 0.0.4 release orchestration, 2026-08-03: the launched agent went off investigating
--print-timeoutas though it were the task; a second attempt returned a bare greeting. No error —the invocation was well-formed, it just meant something else.
Why this is p1 now
The documentation authoring lane was just repointed to Antigravity (#1082, PR #1086) because
agyruns on the owner's Google subscription rather than billing OpenRouter credit. Every futuredocs slice therefore goes through this adapter.
It also silently degraded any Antigravity probe elsewhere — including the
research_extractionlane and
agentic:antigravity-evidence— and the failure presented as "the model gave a uselessanswer" rather than as a malformed command.
Acceptance
--printlast, with the prompt as its value, and never places another flag immediately after--print--print's value and that no flag follows--printagentic:antigravity-evidenceis re-verified against the corrected argvEvidence
8621d4ce0.llm/tools/agentic/suite: 323 passed, 0 failedANTIGRAVITY_PROMPT_VALUE_1089_OKagentic:antigravity-evidence: passed, exit 0, no diagnostics, headless and structured output supported, raw output not retainedProvenance
Found by the PR-C docs supervisor while running the documentation lane, 2026-08-03. Reproduced twice.
Folded into PR #1086 by written owner direction.