Get it here: Antigravity VS Code Extension Toolkit
One of the biggest annoyances with Antigravity/VSCodium is the extension gap. Open VSX lags behind, some extensions are missing entirely, and the ones that do exist are sometimes published by unverified third parties. But if you switch your marketplace setting to Microsoft's, all your existing Open VSX extensions stop updating. Lose-lose.
agvs lets you have both. It downloads .vsix packages directly from the VS Code Marketplace and installs them via CLI. Your Open VSX marketplace stays untouched, those extensions keep updating normally. You just also get the real, current versions of anything that's lagging or missing.
# install claude code v2.1.81 from VS Code Marketplace instead of Open VSX's older v2.0.13.
agvs -i anthropics.claude-code
agvs -s # check for updates & install them
agvs -c # compare what's installed across your IDEs
agvs -l # list what agvs is managing
agvs -sst # optional: daily auto-sync scheduled task
One PowerShell script (~200 lines, heavily commented) + a 5-line .cmd wrapper so you can just type agvs from any terminal. Only talks to marketplace.visualstudio.com.
No telemetry, no tracking, all paths portable.
Just drop both files in the same folder and run agvs from there.
Set it and forget it:
Run agvs -sst once as admin to set up a daily scheduled task that runs agvs -s (sync) and never think about it again.
If you run VS Code alongside Antigravity, the compare flag (-c) shows you exactly which extensions differ between them.
You can uninstall extensions normally via Antigravity:
The tool will detect the removal and will not reinstall it. It will detect the manual uninstall and remove it from its list of extensions to auto-update, next time you run agvs -s manually or automatically via the optional scheduled task.
Show the commands:
PS C:\dev\antigravity-vscode-extension-toolkit> .\agvs -h
--- agvs Status ---
[+] Mode: Administrator
[+] Scheduled Task: Active
-------------------
agvs - Antigravity VS Code Extension Manager
Usage:
agvs -i <ext> Install extension(s) by Marketplace ID
agvs -s Sync: check for updates & install them
agvs -l List managed extensions
agvs -c Compare extensions across IDEs
agvs -sst Setup daily auto-sync (requires Admin)
Examples:
agvs -i ms-python.python
agvs -i ms-python.python, esbenp.prettier-vscode
agvs -s
Install an extension from the VS Code Marketplace:
PS C:\dev\antigravity-vscode-extension-toolkit> .\agvs -i anthropic.claude-code
--- agvs Status ---
[+] Mode: Administrator
[+] Scheduled Task: Active
-------------------
Target: anthropic.claude-code
Downloading v2.1.81...
Installing...
[createInstance] extensionManagementService depends on antigravityAnalytics which is NOT registered.
Installing extensions...
Extension 'anthropic.claude-code-2.1.81.vsix' was successfully installed.
List all extensions managed by this tool:
PS C:\dev\antigravity-vscode-extension-toolkit> .\agvs -l
--- agvs Status ---
[+] Mode: Administrator
[+] Scheduled Task: Active
-------------------
anthropic.claude-code
SingularityInc.claude-notifier
vishalraut.vscode-toon
vscode-icons-team.vscode-icons
List ALL extensions and which IDEs have an installed matching extension name:
Matches extensions by name, not publisher, because the name usually matches between the VS Code and Open VSX marketplaces, but the publisher is different.
So, bob.thingy in VS Code = dave.thingy in Antigravity*.*
The VS Code full name takes precedence for display in the list, but shows Y in both IDE columns.
PS C:\dev\antigravity-vscode-extension-toolkit> .\agvs -c
--- agvs Status ---
[+] Mode: Administrator
[+] Scheduled Task: Active
-------------------
Extension ID Insiders Antigravity VS Code
------------ -------- ----------- -------
076923.python-image-preview Y N Y
10nates.ollama-autocoder Y N Y
akamud.vscode-theme-onedark N N Y
alfredbirk.tailwind-documentation Y N Y
anthony-c-martin.vscode-bicep N Y N
antigravity-jules-bridge.antigravity-jules-bridge N Y N
(...list is lengthy so I cut it off here)