feat(cli): add Antigravity CLI environment - #134
Merged
codeaholicguy merged 1 commit intoJul 2, 2026
Merged
Conversation
Add `antigravity-cli` as an EnvironmentCode so `ai-devkit init` configures Google's Antigravity CLI (`agy`) and installs skills where it actually reads them: project skills into `.agents/skills` and global skills into `~/.gemini/config/skills` (both verified against a real agy install). This is separate from the existing `antigravity` IDE environment, the same way the gemini CLI and gemini IDE are distinct. Follows the grok environment pattern.
nnhhoang
added a commit
to nnhhoang/ai-devkit
that referenced
this pull request
Aug 25, 2026
Remote control drives the `agy` CLI, not the Antigravity IDE, so ticking it on the IDE row was wrong. Add an "Antigravity CLI" row — Setup yes (the antigravity-cli environment shipped in codeaholicguy#134) and Remote control yes from this adapter — and leave the IDE row as it was. Matches how Grok Build CLI is listed and how the merged web docs already separate the CLI from the IDE.
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
antigravity-clias an EnvironmentCode soai-devkit initcan configure Google's Antigravity CLI (agy) and install skills where the CLI actually reads them. This is separate from the existingantigravity(IDE) environment, the same way the gemini CLI is distinct from the gemini IDE.Skill paths (verified against a real
agyinstall).agents/skills(the CLI loads<workspace>/.agents/skills/<name>/SKILL.md).~/.gemini/config/skills(confirmed by havingagycreate a global skill, which landed at~/.gemini/config/skills/<name>/SKILL.md).Changes
types.ts:EnvironmentCodegainsantigravity-cli.util/env.ts:ENVIRONMENT_DEFINITIONS['antigravity-cli']with the paths above.2-supported-agents.md,7-skills.md, and11-configuration-file.mdlist the new environment.Testing
npx nx run cli:testpasses (husky ran all packages on commit).agywrote a new global skill to~/.gemini/config/skills/...; project path confirmed from the CLI reading<workspace>/.agents/skills.