-
Notifications
You must be signed in to change notification settings - Fork 1
Troubleshooting & FAQ
abhayhiwse-hub edited this page Sep 7, 2026
·
1 revision
Frequently asked questions and troubleshooting steps for Antigravity Usage Intelligence.
Symptom: Status bar shows $(sync~spin) or stats remain at 0 tokens.
Cause: Python is required to execute collector.py. If Python is installed in a non-standard location or Windows App Execution Aliases are redirecting python.exe to the Microsoft Store, the extension cannot locate it.
Solution:
- Open IDE Settings (
Ctrl+,orCmd+,). - Search for:
antigravity-stats.pythonPath. - Provide the explicit path to your Python 3 executable:
-
Windows:
C:\Users\<YourUser>\AppData\Local\Programs\Python\Python311\python.exe(orC:\Python311\python.exe) -
macOS / Linux:
/usr/local/bin/python3or/opt/homebrew/bin/python3
-
Windows:
- Press
Ctrl+Shift+P→ Antigravity Stats: Refresh Stats.
If you suspect corrupted cache data or have deleted old sessions:
- Press
Ctrl+Shift+P. - Type and select:
Antigravity Stats: Rebuild Full History Cache. - The extension wipes
~/.gemini/antigravity/antigravity_stats_cache.jsonand performs a clean full-history index.
Explanation: The extension attempts to query the Antigravity Language Server running locally on your machine via loopback HTTPS.
- If the IDE language server is starting up or has not initialized its CSRF handshake yet, the extension gracefully falls back to calculating your active usage using a rolling 5-hour local sliding window.
- Once the language server is fully initialized, the quota card automatically transitions to displaying live server pool metrics and the live countdown timer.
No.
-
collector.pyopens all SQLite databases using URI read-only mode (?mode=ro&immutable=1) withPRAGMA query_only = ON. - This guarantees that Antigravity's active writing processes are never blocked or delayed.
- All scans execute in a detached background child process and take less than 80ms on cached runs.
No. 100% Local & Private.
- The extension contains zero outbound telemetry beacons.
- The only network activity is local IPC communication to
127.0.0.1(loopback) to communicate with Antigravity's local language server. - Prompts, diffs, source files, and credentials are never stored, parsed, or transmitted.
Antigravity Usage Intelligence · 100% Offline & Private · Open Source under MIT License · GitHub