free-antigravity-cli 1.0.11 → 1.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +30 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -59,7 +59,8 @@ antigravity
59
59
  ## Prerequisites
60
60
 
61
61
  * **Node.js** >= 18
62
- * **Official Antigravity CLI** (`agy`) installed at one of the default locations:
62
+ * **Official Antigravity CLI** (`agy`) installed at one of the default locations
63
+ * **Google Account Sign-In**: The CLI uses the desktop Antigravity app's authentication. You must be signed in to [Antigravity Desktop](https://antigravity.google) first. The CLI does not have its own login flow.
63
64
  * **Windows**: `%LOCALAPPDATA%\agy\bin\agy.exe`
64
65
  * **macOS**: `~/Library/Application Support/agy/bin/agy` or `~/.local/share/agy/bin/agy`
65
66
  * **Linux**: `~/.local/share/agy/bin/agy`
@@ -215,6 +216,34 @@ npm test
215
216
  ```
216
217
 
217
218
 
219
+ ## Troubleshooting
220
+
221
+ **"You are currently not signed in" / "No models available"**
222
+
223
+ The CLI does not have its own login flow. You must sign in via the desktop Antigravity app first:
224
+
225
+ 1. Open **Antigravity Desktop** (installed separately)
226
+ 2. Sign in with your Google account
227
+ 3. Close and reopen the CLI: `antigravity`
228
+
229
+ **"Port 50998 is already in use"**
230
+
231
+ A previous CLI session may still be running. Kill stale processes:
232
+
233
+ ```bash
234
+ # Windows
235
+ taskkill //F //IM agy.exe
236
+
237
+ # macOS/Linux
238
+ pkill agy
239
+ ```
240
+
241
+ **Custom models not appearing in agy**
242
+
243
+ 1. Verify models are added: `antigravity models list`
244
+ 2. Ensure API keys are valid (desktop-imported keys may need re-entry)
245
+ 3. Restart the CLI after adding models
246
+
218
247
  ## Comparison
219
248
 
220
249
  | Feature | Free Antigravity CLI | Google agy CLI |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "free-antigravity-cli",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Open-source community CLI for Antigravity - supports custom AI models (OpenAI, Anthropic, Ollama, OpenRouter, Google AI Studio) alongside Gemini",
5
5
  "homepage": "https://github.com/vahapogut/free-antigravity-cli",
6
6
  "author": {