Replies: 1 comment 1 reply
|
Thanks for the detailed Windows repro. I checked the current Your diagnosis lines up with #5495. PR #5585 has been approved and QA-accepted, but it is still open and currently conflicts with The |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Title
Antigravity CLI 1.1.5 on Windows ignores prompts in Open Design 0.15.1 (
-p -incompatibility)Hi everyone,
I encountered an issue using Antigravity with Open Design on Windows.
Environment
Symptoms
Open Design correctly detected the Antigravity CLI and the connection test succeeded.
However, every prompt sent from Open Design was ignored. Instead of answering the actual request, Antigravity returned a generic greeting or behaved as if no prompt had been provided.
Root cause
Open Design launches Antigravity using:
and then writes the actual prompt to stdin.
With Antigravity CLI 1.1.5, supplying
-pmeans the CLI no longer reads the prompt from stdin. As a result, the literal string"-"is treated as the prompt and the data written to stdin is ignored.Workaround / Fix
Removing:
while keeping stdin enabled (
promptViaStdin: true) immediately fixed the issue.After this change, Open Design correctly sends prompts to Antigravity and everything works as expected.
This appears to match the fix proposed in PR #5585 and confirms that it resolves the issue on Windows with Antigravity CLI 1.1.5.
All reactions