Your Antigravity chat panel on Windows accepts prompts but returns nothing. You may also see cryptic console or log messages about agentSessions, worktreeconfig, or JSON parsing.
Antigravity agent chat is silent on Windows with no spinner and no error
You type a prompt, nothing happens. No spinner and no toast.
Developer tools Console shows one or more of:
[createInstance] ooe depends on UNKNOWN service agentSessions
Error activating plugin Apigee: failed to parse JSON file …combined_OI_workspace.code-workspace
The latest log at %APPDATA%\Antigravity\logs\\ls-main.log includes:
core.repositoryformatversion does not support extension: worktreeconfig
Two compounding faults: 1) Git setting extensions.worktreeConfig enabled breaks Antigravity’s Go LSP regardless of repositoryformatversion. 2) The auto managed .code-workspace file contains trailing commas that strict JSON parsing rejects, preventing agentSessions from registering.
Primary Fix
Remove trailing commas from the active .code-workspace, then unset extensions.worktreeConfig in each affected repository, and restart Antigravity.
Complexity
Medium
Estimated Time
10 to 20 minutes
Fix the silent agent now
Step by Step Solution
Step 1 — Confirm the symptoms
Open developer tools: Help → Toggle Developer Tools → Console.
Check for these messages:
– [createInstance] ooe depends on UNKNOWN service agentSessions
– failed to parse JSON file …combined_OI_workspace.code-workspace
Open the newest log: %APPDATA%\Antigravity\logs\\ls-main.log and look for worktreeconfig or workspace infos is nil.
If you also have separate browser agent troubles, compare with this targeted fix in our browser agent troubleshooting.
Step 2 — Strip trailing commas from the active workspace file
This converts JSONC commas to strict JSON so the plugin loader can parse it.
PowerShell
# Find the most recently written workspace file and back it up with a timestamp
$ws = Get-ChildItem "$env:USERPROFILE\.gemini\antigravity\brain" -Recurse -Filter "*.code-workspace" |
Sort-Object LastWriteTime -Descending | Select-Object -First 1
Copy-Item $ws.FullName "$($ws.FullName).bak-$(Get-Date -Format yyyyMMddHHmmss)" -Force
Strip trailing commas before } or ] to make strict JSON
Step 3 — Fix each affected repository’s Git configuration
This preserves long path support and removes the breaking extension flag.
PowerShell
# Change this path to your repository root
$repo = "C:\path\to\your\repo"
git -C $repo config core.longpaths true
git -C $repo config --unset extensions.worktreeConfig
If you previously enabled worktrees with AI assistants, repeat the two git commands for every repo that is opened by Antigravity.
Step 4 — Fully close and reopen Antigravity
Quit Antigravity.
In Task Manager, ensure no Antigravity processes remain.
Reopen the same workspace.
Step 5 — Verify the fix
You should now get a response to a test prompt. Also validate the logs are clean.
PowerShell
Pin Antigravity to a stable version and disable auto updates
If you prefer a quick rollback while waiting for a product fix:
Uninstall Antigravity.
Install a known stable build: version 1.19.6 for Windows x64 from the official releases page.
In Antigravity, open Settings icon then Editor Settings then Application then Update:
– Uncheck Enable Windows Background Updates
– Set Mode to None
This prevents upgrades that reintroduce the bug.
For cross version browser side issues, compare with our additional browser agent notes.
Only remove the Git extension flag
If your Console does not show JSON parse errors, try only unsetting the extension:
PowerShell
Avoid enabling extensions.worktreeConfig in repos opened by Antigravity until an upstream fix ships.
Keep a backup of the active .code-workspace whenever Antigravity updates it.
Pin to a stable product version and keep auto updates disabled when your workflows are critical.
Make small changes then re test, and always back up files before modifying.
Keep long path support enabled in repos that need it.
Final Thought
The silent chat issue stems from a strict JSON parse failure and a Git extension flag that the language services cannot handle. By fixing the workspace JSON and unsetting the extension in your repos, you restore agentSessions and get immediate responses again.
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.