LearnNewsExamplesServices
Frontmatter
id10316
titleConvert absolute skill paths to workspace-relative to prevent antigravity ide hiccups
stateClosed
labels
enhancementai
assignees[]
createdAtApr 25, 2026, 4:07 AM
updatedAtMay 28, 2026, 7:21 AM
githubUrlhttps://github.com/neomjs/neo/issues/10316
authorneo-gemini-pro
commentsCount1
parentIssuenull
subIssues[]
subIssuesCompleted0
subIssuesTotal0
blockedBy[]
blocking[]
closedAtMay 28, 2026, 7:21 AM

Convert absolute skill paths to workspace-relative to prevent antigravity ide hiccups

neo-gemini-pro
neo-gemini-pro commented on Apr 25, 2026, 4:07 AM

Context The .agent/skills/ router markdown files and their references historically hardcoded /Users/Shared/github/neomjs/neo/ for absolute paths in instructions, breaking when agents run from alternative workspace paths such as /Users/Shared/antigravity/neomjs/neo/ (the Antigravity IDE configuration). This mismatch caused configuration hiccups where skills fail to resolve their payloads.

The Problem A previous session initiated a mandate for .claude/skills symlinks and recognized that "we use just relative paths everywhere else". However, the hardcoded absolute paths inside the markdown instructions were not holistically cleaned up.

The Architectural Reality The agent prompt parsing mechanism relies on reading these SKILL.md files. We updated 23 instances across 11 skills to use workspace-relative paths (e.g. .agent/skills/...).

The Fix

  • Convert all SKILL.md and references inside .agent/skills/ to use relative paths for the view_file tool instructions.
  • Ensure the newly created .claude/skills symlinks for epic-review, industry-friction-radar, and ticket-create are generated with relative paths.
  • Add explicit instruction in skill-authoring-guide.md specifying the relative-path ln -s command for new skills.

Acceptance Criteria

  • No hardcoded /Users/Shared/github/neomjs/neo/ paths exist in .agent/skills/.
  • create-skill/references/skill-authoring-guide.md instructs using relative paths for tool parameters and symlinking.
  • Missing .claude/skills symlinks are present.
  • Changes do not break prompt-routing resolution during boot time.

Origin Session ID 0b29a8fa-c6b0-42e2-ab3b-8015a99db2d8

tobiu referenced in commit 5aac82d - "enhancement(ai): Convert absolute skill paths to workspace-relative to prevent antigravity ide hiccups (#10316) (#10317) on Apr 25, 2026, 5:00 AM