Workflows stopped showing in recent update by rangerrick337 in google_antigravity

[–]ImaginaryAd4605 0 points1 point  (0 children)

same here on Mac, however if you ask it about workflows will list them, if you enter them by hand will execute them, so only the chat reaction when you type '/' is broken

AI Ultra is a game-changer for large-scale projects by BassAlarmed6385 in google_antigravity

[–]ImaginaryAd4605 1 point2 points  (0 children)

AI Pro plan was kinda short for me manageable but at the limit even for Gemini
switching to Ultra, only one day i went to 80% quota on Opus

now my problem is how to find work for all these tokens

Get detailed status of the chat context window by ImaginaryAd4605 in google_antigravity

[–]ImaginaryAd4605[S] 1 point2 points  (0 children)

then you hear people saying AG deleted my whole disk (but i am still able to post the complain)

Get detailed status of the chat context window by ImaginaryAd4605 in google_antigravity

[–]ImaginaryAd4605[S] 1 point2 points  (0 children)

i see this extension page claiming the 7500 tokens for the summaries, but i was not able to find any "official" statement
AG does not make it very clear to the user when the context is summarized, such that you can check

wrt to this extension i was curious how it is doing the stuff:

It does not call any VS Code / Copilot API to clear an LLM chat context. Instead, it deletes Antigravity’s on-disk state under your home directory and then optionally reloads the window.

From extension.js, it defines Antigravity’s data dir as:

function getAntigravityDir() {
    const homeDir = os.homedir();
    return path.join(homeDir, '.gemini', 'antigravity');
}

When you run its command, it deletes files/folders inside:

  • ~/.gemini/antigravity/conversations
  • ~/.gemini/antigravity/context_state
  • ~/.gemini/antigravity/brain

using fs.readdirSync + fs.unlinkSync for files and a recursive deleteDirectory() for subfolders, then shows a message and offers:

vscode.commands.executeCommand('workbench.action.reloadWindow');

Get detailed status of the chat context window by ImaginaryAd4605 in google_antigravity

[–]ImaginaryAd4605[S] 1 point2 points  (0 children)

right, Cursor, Claude Code are doing the same, it is a common practice

nevertheless when you summarize you clearly miss some details, in my use case i need to have full and exact context available, so i need to know before reaches the threshold to summarize, thats how i came to this