Frontmatter
| id | 8017 |
| title | Fix IssueSyncer path resolution for Antigravity environment |
| state | Closed |
| labels | bugcontributor-experienceai |
| assignees | tobiu |
| createdAt | Dec 4, 2025, 12:00 AM |
| updatedAt | Dec 4, 2025, 12:15 AM |
| githubUrl | https://github.com/neomjs/neo/issues/8017 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Dec 4, 2025, 12:15 AM |
The
sync_alltool was failing in the Antigravity environment due toprocess.cwd()resolving to/. This caused theIssueSyncerto attempt creating directories at the filesystem root (e.g.,/.github), resulting inENOENTerrors.Changes:
ai/mcp/server/github-workflow/config.mjsto use a hybrid path resolution strategy.import.meta.url.process.cwd()is/(Antigravity), it falls back to the package root.process.cwd()to maintain compatibility with standard workspace scripts.Verification:
sync_allruns successfully in Antigravity after the fix.