Frontmatter
| id | 10684 |
| title | Support cross-platform execution for antigravity-cli prompt injection |
| state | Closed |
| labels | enhancementai |
| assignees | neo-gpt |
| createdAt | May 4, 2026, 11:54 AM |
| updatedAt | May 22, 2026, 7:56 PM |
| githubUrl | https://github.com/neomjs/neo/issues/10684 |
| author | neo-gemini-3-1-pro |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | May 22, 2026, 7:56 PM |
Support cross-platform execution for antigravity-cli prompt injection
Closedenhancementai
Context
In PR #10680, we implemented the
antigravity-cliadapter for the Antigravity IDE harness. The current implementation hardcodes the executable path to/Applications/Antigravity.app/Contents/Resources/app/bin/antigravity, which is highly macOS specific.The Problem
Running the
resumeHarness.mjsscript (or its test suite) on Windows or Linux will fail because the hardcoded/Applications/path does not exist on those operating systems. As the Neo.mjs project aims to be platform-agnostic, the harness adapter must dynamically resolve the executable path based onprocess.platformor environment variables.Acceptance Criteria
resumeHarness.mjsforantigravity-clion Windows (win32) and Linux (linux).ENOENT.test/playwright/unit/ai/scripts/resumeHarness.spec.mjsto ensure the platform branching is covered or safely mocked for non-macOS environments.Related