How to Delete Conversation AntiGravity

My antigravity feels very heavy, I wonder if it’s because the conversations have piled up. How do I delete the conversations permanently?

2 Likes

Hi @wahyu_putranto,

Welcome to AI Forum!

To delete a conversation in Antigravity, you can use the Agent Manager. Here are the steps:

  1. Open the Agent Manager (often accessible via the “Mission Control” or Agent icon in the sidebar).

  2. Locate the specific conversation you wish to remove in your Inbox or History list.

  3. Right-click on the conversation entry and select Delete Conversation.

Alternatively, if you are currently inside the conversation in the Editor’s Agent panel, look for the trash icon (usually located in the top header of the chat panel) to delete the current session.

1 Like

Hi I was unable to right click to delete conversations in the agent manager window. Also I dont see any trash icons in while I’m in the chat conversation. I have quite a few agent conversations that are stuck in loading, trying to open the conversation just leads to “Agent is taking unexpectedly long to load”

1 Like

@SideFire many people are facing the agent loading issue and posted here. You could file bug reports directly through the Antigravity in-app feedback tool. You can do this by navigating to the top-right corner of the interface, clicking the Feedback icon, and selecting Report Issue.

What If I don’t want it to have that conversation in memory but u don’t want to remove the conversation completely ? Editor mode

rm -rf ~/Library/Application\ Support/Antigravity
rm -rf ~/Library/Caches/Antigravity

Conversations are in /.gemini folder located in root

rm -rf ~/.gemini/antigravity/conversations

rm -rf ~/.gemini/antigravity/brain

rm -rf ~/.gemini/antigravity/implicit

rm -rf ~/.gemini/antigravity/browser_recordings

rm -rf ~/.gemini/antigravity/code_tracker

To have fresh n up AGY

rm -rf ~/.antigravity

rm -rf ~/.gemini

rm -rf ~/Library/Application Support/Antigravity

There are more secret folders and files, but above will do the trick for you

1 Like

Is there a way to delete specific conversations that are stuck that you can’t delete through the UI?

Is this ‘right-click to delete’ supposed to work on Windows 11 as well? It doesn’t on my pc. Is this for macOS only?

Same for me. Windows 11. Never been able to see the delete option.

You can manually remove the conversation files.

  • Close Antigravity completely.

  • Navigate to your user profile directory:
    C:\Users\[YourUsername]\.gemini\antigravity\conversations

  • Delete the folder corresponding to the specific agent/conversation ID you want to remove.
    (Note: This is a permanent action and cannot be undone via the UI).

1 Like

It’s a bug: right-click to delete apparently works on macOS only and should be added to Windows.

Fortunately, while deleting conversations from the Agent Manager window does not work on Windows 11, I did find a way to delete them.

Open the Editor window and then the Agent sidebar. Next, click the small clock icon at the top. You will see a list of chats, each with a trash can icon next to it.

9 Likes

Thanks!!! worked for me with this “method “

1 Like

Thank you for this workaround! Definitely easier than deleting via file explorer.

1 Like

Thanks! This is very convenient and deletes conversation history quickly.

1 Like

Thanks for confirming! It is great to know that things are working for you now. Happy coding!

1 Like

Thank you so much!

That step worked perfectly.

I was stuck, so this really helped me out :heart::folded_hands:

Here are the general steps to manually delete any persistent conversation and ensure it doesn’t return via cloud sync:

:hammer_and_wrench: General Manual Deletion Guide

  1. Identify the ID: Find the conversation ID for your title: grep -ri "Conversation Title" ~/.gemini/antigravity/brain

  2. Delete local files: Remove these three locations (replace <ID> with your ID):

    • rm -rf ~/.gemini/antigravity/brain/<ID>

    • rm ~/.gemini/antigravity/annotations/<ID>.pbtxt

    • rm ~/.gemini/antigravity/conversations/<ID>.pb

  3. Clear Local Cache: If it persists, close the app and run: sqlite3 ~/.config/Antigravity/User/globalStorage/state.vscdb "UPDATE ItemTable SET value = '' WHERE key = 'antigravityUnifiedStateSync.trajectorySummaries';"

  4. Restart Antigravity

2 Likes

Nice answer. Just skip over what you don’t know, and answer what you feel like answering. Gemini, is that you?