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
Browse filesBrowse the repository at this point in the historyBrowse files
authored
fix(antigravity): update skill and workflow paths from .agent to .agents (#830)
* fix(antigravity): update skill and workflow paths from .agent to .agents
Antigravity has migrated from .agent (singular) to .agents (plural) for
workspace skills and workflows. The old .agent path still works via
backward compatibility, but the official docs now specify .agents.
Changes:
- config.ts: skillsDir '.agent' -> '.agents'
- antigravity adapter: workflow path '.agent/workflows/' -> '.agents/workflows/'
- legacy-cleanup: add patterns for old .agent/ artifacts cleanup
- docs: update supported-tools.md table
- tests: update expected path assertions
Closes #0 (reported by BugsCreator and Minh Pham in Discord)
* fix(antigravity): migrate an existing .agent install to .agents
Pointing Antigravity at `.agents` leaves every existing `.agent/` install
behind, so this registers the move instead of only changing the target:
- `.agent` becomes Antigravity's legacy skills root and legacy tool root, so
update relocates managed skills and commands after generating their
replacement, keeping a file the user customized.
- Detection keys off `.agent` and `.agents/workflows`. The bare `.agents` root
is shared with Codex, Zed, and the vendor-neutral target, so it cannot stand
in for "Antigravity is set up here".
- Delivery inference reads a tool's legacy roots for command files too.
Without it the first update after the move saw skills but no commands,
wrote `delivery: skills`, and the next update deleted every slash command.
- Legacy slash-command cleanup stays scoped to the pre-opsx `openspec-*` names
under `.agent`; the migration owns the `opsx-*` files, and a shared root is
never glob-swept.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
* docs: record the Antigravity root move
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
* fix(antigravity): require a generated command before moving its legacy copy
migrateCommandFiles relocated a legacy command file whether or not the
current root held a replacement. Codex never reached that path — it has no
command adapter — so Antigravity is the first after-generation move where it
matters: under skills-only delivery, or for a deselected workflow, the move
recreated a command OpenSpec had just decided not to install.
Gate the move on an existing destination, the same way migrateSkillDirs
already does for after-generation timing.
Reported by CodeRabbit on #830.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
* fix(antigravity): arbitrate shared agent skills
* test(antigravity): cover Windows migration paths
* fix(antigravity): harden shared-root migration
---------
Co-authored-by: Clay Good <hi@claygood.com>
Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
Write Antigravity skills and workflows to `.agents/`, arbitrate its shared skill tree with other tools, and safely migrate an existing `.agent/` install.
0 commit comments