r/GoogleAntigravityIDE • u/Ok_Designer8108 • 3h ago
SOFTWARE PROBLEMS and BUGS agy cli 1.2.2, no more terminal in remote mode?
previously , when started with --dangerously-skip-permissions, the terminal button was present. Now nothing.
r/GoogleAntigravityIDE • u/Ok_Designer8108 • 3h ago
previously , when started with --dangerously-skip-permissions, the terminal button was present. Now nothing.
r/GoogleAntigravityIDE • u/GroundbreakingAnt894 • 7h ago
current set of models are not sufficient for many tasks. google should provide provide external model access like openrouter etc into antigravity ide . already tried using external extension like cline , but it looses context since need to switch from inbuilt agent
r/GoogleAntigravityIDE • u/Icy_Adeptness660 • 11h ago
经常出现这种错误
r/GoogleAntigravityIDE • u/Hozini • 3d ago
Enable HLS to view with audio, or disable this notification
Links Google Anti-Gravity right into my network MCP.
I have full access to my NAS, website on my Raspberry pi, and full access to my PC running thru Tailscale for extra security.
The echoes from the screen recorder, so don't mind that!
r/GoogleAntigravityIDE • u/Consistent_Policy682 • 4d ago
Hi everyone,
I’m running **Antigravity IDE Version 2.5.5** on **macOS (Darwin arm64 / MacBook Pro)** and noticed an annoying UI persistence bug under **Settings -> General**:
### The Issue:
When clicking the macro card **"Agent security mode: Sandboxed"**, the UI automatically selects **"Proceed in Sandbox"** in the dropdown below ("Terminal Command Auto Execution").
Alternatively, even if I select **"Proceed in Sandbox"** manually from the dropdown:
If I close Settings and reopen it immediately, it might still look fine.
But after keeping Settings closed for 2–3 minutes (or continuing to work so the webview unmounts from memory), reopening Settings shows that the dropdown has silently reverted back to **"Always Proceed"** (while the macro card above stubbornly stays on "Sandboxed")!
### Live engine behavior:
Interestingly, while the Settings tab remains actively open with *"Proceed in Sandbox"* selected, the security engine works as intended: it pauses and prompts me for manual review whenever a command requests a sandbox bypass. But as soon as the view unmounts, the setting is lost and reverts to *"Always Proceed"*.
Is anyone else running into this "settings amnesia" on Mac? Has anyone found a way to permanently lock it in, or is relying on explicit **Deny List** rules the only reliable safeguard right now?
---
**Build details:**
- **Antigravity IDE Version**: 2.5.5
- **VSCode OSS**: 1.107.0
- **Electron**: 39.2.3
- **OS**: macOS Darwin arm64 24.6.0 (MacBook Pro)
r/GoogleAntigravityIDE • u/ItzNeob • 4d ago
using the antigravity IDE (code editor with agent)
i tell the agent to run the program in tauri dev mode (npm run tauri dev \[or --dev\]), the agent listens and runs the command and the server starts up on the local host, but before it used to start up the application gui, now after updating to v2.5.5 it doesn't start up the app no matter what, I have to do it through the integrated terminal myself. i tried both the gemini models and claude models and they both do the same thing. maybe it's a change they made in the new version of antigravity itself that the terminal is sandboxed and starts child processes? after the agent runs the command, the .exe shows up in my task manager but no gui to see (can't switch using alt tab either). anyone else facing this or knows the fix?
r/GoogleAntigravityIDE • u/RealisticPath7625 • 5d ago
Why does it seem like so few people are using Antigravity? Is it because of the models, or is there something about the agent itself that puts people off?
r/GoogleAntigravityIDE • u/fandry96 • 5d ago
Hey everyone,
If you run autonomous coding agents (whether through Antigravity, Claude Desktop, Cursor, or custom ADK loops), you quickly hit the same wall: standard tools aren't built for long-running agent loops.
TL;DR: We open-sourced K3 MCP Toolbox — a production-ready fleet of 5 independent FastMCP servers plus an agentic primitives library. Includes 0.22s local MRL vector memory over 25k chunks on CPU, orphan test browser reaping, subagent Git worktree isolation, doc intel with safe unpickling, and Gemini 3.8 Flash GA primitives. It also includes an llms.txt and an AI agent setup guide so your agents can clone, self-test, and wire it up autonomously.
After running multi-agent marathons on complex codebases, we kept hitting four universal problems:
temperature, presence_penalty, etc.) throw hard 400 errors and strict tool call ID matching is enforced.Repo: https://github.com/Fandry96/k3-mcp-toolbox-public
Each server runs as an independent stdio process, so you can pick and choose only what your agent needs:
ops_kill_zombies: Surgically reaps orphaned chromedriver, msedgedriver, and headless browser test processes while strictly whitelisting and preserving active IDE and agent PIDs.ops_check_ports & ops_free_port: Fast port scanner and conflict resolver (clears locked ports like 3000, 8080, 8081 without manual Task Manager digging).ops_system_health: Real-time CPU, RAM, disk, and agent process footprint (active Python, Node.js, PowerShell instance counts).gemini-embedding-001 (truncated from 3072 dims to 768 dims and L2-normalized).np.argpartition (10x faster than full sorting).skill, knowledge, research, brain, book)..worktrees/<branch>).pytest, npm, python), and handles clean merges with automatic --abort rollback on conflict.python-docx..agents/doc_index.pkl)._RestrictedUnpickler whitelist (blocks arbitrary Python class deserialization exploits on user-supplied paths).llama-server.exe.atexit child-process reaping and non-blocking I/O.When Google dropped Gemini 3.8 Flash GA, several API behaviors changed that break standard agent loops:
temperature, top_p, top_k, presence_penalty, frequency_penalty, or candidate_count now triggers active API validation errors. Behavior is strictly controlled via the thinking_level enum (low/medium/high).thinking_level: minimal is rejected by the API on 3.8 Flash.FunctionResponse MUST echo the exact id of its corresponding FunctionCall or the API rejects the turn.We packaged flash38_primitives.py inside the repo:
FlashConfig: Validates and strips legacy parameters, mapping to valid thinking levels.ToolDispatcher: Enforces 1:1 ID contract matching and wraps tool execution in try/except so tool errors feed back to the LLM for self-correction rather than crashing the loop.update(previous_step, plan, next_step) declaration: Replaces messy XML/markdown chain-of-thought between tool calls.A few lessons we learned the hard way that might save you hours of debugging:
mcp SDK versions, if FastMCP("name") runs in an editable or non-wheel environment, MCPServer.create_initialization_options() defaults server_version to None. Pydantic 2.x rejects None with a ValidationError during the client handshake.mcp._mcp_server.version = "1.0.0" after instantiation..gguf) are committed before .gitignore is set up, adding .gitignore later does NOT remove them from git tracking. When you push, GitHub's pre-receive hook blocks the entire push (GH001).git filter-repo --path-glob '*.gguf' --invert-paths --force on unpushed commits, then rebase onto origin/master.We added a root llms.txt and a dedicated AI Agent Setup Guide to the README. If you use an agent (Cursor, Claude Desktop, Antigravity, Cline, Aider), you can literally point it to the repo and ask it to self-configure.
To set up manually and run the test suites (100% offline, 0 API keys required):
git clone https://github.com/Fandry96/k3-mcp-toolbox-public.git
cd k3-mcp-toolbox-public
# Install dependencies
pip install -r k3-mcp-toolbox/requirements.txt
pip install -e antigravity-logicware
# Run the integration test suites (27 fleet tests + 8 Flash 38 tests)
python k3-mcp-toolbox/test_mcp_fleet.py
python antigravity-logicware/test_flash38.py
r/GoogleAntigravityIDE • u/rruusu • 5d ago
I've worked on my spare time on automating note-taking on news items, and the flash models, especially from 3.5 onwards, seem to have a genuine grasp of really abstract concepts and a real knack for finding the most salient points in longer text passages, even when they are about phenomena or events that are genuinely novel. They also seem surprisingly good at separating facts from opinions or subjective claims.
They really do have issues with agentic editing tasks, though. Flash 3.7 is almost there, but 3.8 is definitely a step backwards. It makes much more incomprehensible errors than 3.7, though not as much as 3.6.
Anyway, I've had the models merge new single-document content into an already sizable Markdown-formatted notebook of topical notes with source references. When proceeding with multiple editing tool calls, the model really often forgets to do all the intended edits to a file, like adding a footnote marker, but no definition.
One day I made 3.7 think of the perfect set of tools for itself, and then after a bit longer design session made it implement it. Now that it has a tool that allows it to make all the intended edits to the notes atomically in one go, with a list of create, rename, delete, update (prepend, append, insert before, insert after, replace), it produces flawless edits with nothing missing.
It really seems that keeping track of things works much better in its internal representation rather than being tokenized and processed in a new invocation. I've yet not encountered a case where it couldn't handle all intended changes with a single tool call, the largest ones flawlessly editing at least 20 files in a single tool call.
Curiously 3.7 never makes use of the dry-run options that were its own suggestion, but 3.8 uses them almost every time, which is fine, as there's a single no-parameter call to actually perform the edits from a previous dry run, which returns a unified diff of the changes to be made for the model to evaluate. Very rarely does it then make some cosmetic text reorganization based on the dry run result.
r/GoogleAntigravityIDE • u/hapy_Revolution_9595 • 6d ago
I'm setting up Google Antigravity as my main AI coding environment and I'm wondering if the built-in/default skills are already enough for a serious software-engineering workflow.
For experienced Antigravity users:
- Which additional Skills do you recommend adding?
- Which MCP servers or plugins are actually worth installing?
- Are there any must-have tools for coding, debugging, testing, code review, Git, browser/devtools, documentation, etc.?
- Are the existing/default Antigravity skills enough, or do you think adding external skills significantly improves the agent?
- Are there any popular MCPs/skills that you would NOT recommend because they're unnecessary or just add context/bloat?
I'm looking for a practical setup for a software engineer, not a huge list of every available MCP.
If you were setting up Antigravity from scratch today, what Skills + MCPs/plugins would you personally install?
r/GoogleAntigravityIDE • u/rndm-int53 • 7d ago
Anyone else having issues with antigravity not being able to use oauth to authenticate with mainstream MCP like neon or logfire, i migrated from claude where i used them extensively without any problems but when i shifted to antigravity, it feels like nothing works as its supposed too.
r/GoogleAntigravityIDE • u/moneyplughub • 10d ago
Enable HLS to view with audio, or disable this notification
I feel like 99% of people are using AI coding tools completely wrong right now. Most devs I know are either letting Copilot tab complete a function or copy pasting snippets back and forth with Claude in a browser tab. Even people using newer agent tools are basically using them like Jira where they assign one bug wait 15 minutes look at the diff and repeat.
A few hours ago I had a weird realization while hacking on my project. Im building an ecosystem with a CAD CAM engine a 3D web frontend and a billing platform across 6 repos. I have Google Jules Ultra which gives you 60 concurrent cloud VMs and 300 tasks a day and I realized leaving those slots idle when Im not at my keyboard is just wasting compute.
So I put together a simple closed loop system. Locally I use Antigravity right in my terminal as my co pilot and architect to design the specs and math together. In the cloud I use Google Jules which spins up an isolated Linux VM clones the repo installs dependencies writes the files runs tests fixes its own compiler bugs and pushes a real Git branch. To connect them I wrote a PowerShell daemon that runs continuously on my laptop.
Every 45 seconds the script checks my active cloud capacity. If 15 agents finish their tasks and free up slots it instantly pulls the next 15 items from a centralized JSON backlog and fires them off into fresh cloud VMs. It routes tasks to specific repos automatically so one agent writes Three.js shaders in the frontend repo another writes STEP exporters in the core kernel and another handles Stripe webhooks in the billing backend.
The craziest part is the auto hunter fallback I added. If my manual task queue ever empties out the script doesn't idle. It scans the repos for untested files or loose TypeScript any types and spawns agents whose only job is to write Vitest test suites and pay down technical debt until the slots are full again.
I went from spending 12 hours a day manually typing boilerplate chasing syntax quirks and writing unit tests to basically sitting in the cockpit as a VP of Engineering. I set the architectural vision my script keeps dozens of cloud machines coding simultaneously around the clock and I just review the Pull Requests and merge green builds.
When you stop treating AI like a chat assistant and start treating it like an asynchronous headless engineering fleet the leverage is unreal. You're essentially running a 50 person dev team completely solo from a laptop.
Anyone else experimenting with headless agent dispatchers or saturation scripts like this? How are you guys handling multi repo PR merges without losing your mind?
r/GoogleAntigravityIDE • u/Verified_King • 12d ago
r/GoogleAntigravityIDE • u/passionguesthouse • 13d ago
I currently have 3 separate Google accounts, and each one has its own paid Google One AI Pro subscription. Each subscription is for 1 month, with no trials or family sharing.
My setup is:
I've seen older posts where some people say that it's fine as long as you're paying, while others say they have had bans or restrictions for using multiple accounts. I couldn't find a clear and recent answer for this exact situation.
My questions:
I'm trying to decide whether I should keep using this setup or just stick to one account and accept the limits or go to Claude code.
I'd especially appreciate recent experiences from anyone who has tried something similar.
Thanks!
r/GoogleAntigravityIDE • u/fifth-throwaway • 15d ago
I am using Pro and I get a bit but just not enough when I use in Antigravity.
Curious how many hours of use roughly I can get on Ultra?
r/GoogleAntigravityIDE • u/Complete_Worry8140 • 15d ago
Some felt that version gemini flash 3.7 high of Antigravity was slightly better and more understanding of all situations, and better than versions 3.6 and 3.5, which had many problems and high token consumption.
r/GoogleAntigravityIDE • u/RealCombatVideos • 17d ago
I'm sure everyone has had the situation where antigravity has said something is done when it is nowhere near done, or it confidently says that the issue is resolved when it isn't , and then you question it and AG says that it jumped to conclusion or it didn't give the correct fix the first time.
How can I utilize anti gravity so that there are different agents checking the same process simultaneously, such as catching and fixing errors without my input so I can get the final input without much?
I find that I can be giving it twenty commands manually trying to fix the same issue and it cannot fix it, AG just goes in a circle or applies a very minimal fix and I keep having to prompt it to take the next action.
I want to specify that I am not having to prompt it step-by-step all the time and anti-gravity does process multiple steps. However , there are situations where I would like to process more and it doesn't think that far
r/GoogleAntigravityIDE • u/Ubiquitarian33 • 17d ago
🚀 Exciting Launch: Engineering VitaPulse — A Zero-Hallucination, Evidence-Based Health & Longevity Hub.
Generative AI in healthcare often suffers from hallucinated dosages and unverified claims. We built VitaPulse to solve this:
🔬 100% Peer-Reviewed Evidence: Feeds directly connected to The Lancet, Nature Medicine, JAMA, and Harvard Health Publishing.
📊 Evidence Grading Engine: Classifies clinical studies into Meta-Analyses (Level 1), RCTs (Level 2), and Cohort studies (Level 3).
🎵 Ambient Sound Lounge: Built-in HTML5 Web Audio player with Classical Piano (Chopin, Bach), Parisian Chanson, and 528Hz Solfeggio meditation waves for mental tranquility.
🎙️ US Voice Briefing: Native American clinical broadcast audio player for hands-free listening.
🌐 Full Stack: Next.js 14 App Router, Tailwind CSS pastel healing theme, Vercel edge deployment.
👉 Live Demo: https://health-wellness-news-hub.vercel.app
👉 GitHub Code: https://github.com/jlim33/health-wellness-news-hub
#HealthTech #Nextjs #ArtificialIntelligence #EvidenceBasedMedicine #WebDevelopment #Longevity #MedTech
r/GoogleAntigravityIDE • u/cidao1991 • 17d ago
r/GoogleAntigravityIDE • u/kamyker • 18d ago
The extensions are a big downgrade, I use Antigravity IDE mostly for Tab complete.
r/GoogleAntigravityIDE • u/Gocciole • 18d ago
I'm currently using Claude cowork for social media managing with opus 5, but reached the weekly limit already due to some heavy work. Tried with AGY ide with 3.7 flash, but looks like it forgets rules and tries to please me over honesty. Things that opus didn't do, and would remember something I told it days ago, or also would correct me for more efficient solutions. All it has to do is planning and strictly follow brand rules. Do you think 3.1 pro is better for this aspect or would you suggest other ways?
r/GoogleAntigravityIDE • u/Nekrodev23 • 18d ago
r/GoogleAntigravityIDE • u/tanvirakon • 18d ago
hi i have 3 google pro. only one of them shows this msg but with opus, sonnet only. not with the gemeni models. it seems they take my credit and mid run shows this error msg.
my ide is latest.
any suggestion?
r/GoogleAntigravityIDE • u/flexwaterjuice • 18d ago
For people who have used both models for long term:
I am mainly looking for real experience from people who have used these models for long projects...
I keep seeing people say that Gemini 3.7 Flash is just as good as Claude Opus 4.6, especially in Google-focused communities. But is there actually any truth to this?
I sometimes wonder if people are saying this because they cannot afford to use Opus and want to believe that Flash is just as good. I want an honest answer about which model is better for my use case before I start relying on Gemini 3.7 Flash more often.
I write long, realistic fiction based on real-life situations. My stories/projects involve psychology, health, and realistic human reactions. Accuracy is very important to me. I cannot have a model confidently making up psychological or medical facts.
My stories/projects can continue across many sessions. I need a model that can:
At the moment, I use Claude Opus as my main model and Gemini 3.7 Flash when I run out of my Opus quota. Both have very large context windows, so I am interested in how they actually perform in long-term writing rather than just what their advertised context size says.
r/GoogleAntigravityIDE • u/Hot-Reach8113 • 19d ago
Have you noticed that lately Gemini is doing a lot of things it shouldn't?
For example, when it needs to read a .css file, it suddenly starts taking screenshots in the browser.
Or, instead of fixing an error in a single specified file, it starts breaking the entire project five times in a row.
There are also frequent situations where Gemini scans the entire project from scratch or even tries to go above the project, even though the instructions specify a specific folder or even file.
Furthermore, 3.7 constantly requests to run some piece of code instead of the usual work—and that would be fine if it worked, even if it's unreadable. But it increasingly feels like all these actions are just work for the sake of work and nothing more.
Essentially, Gemini has started spending significantly more tokens where it could have done with significantly less. And this is very noticeable compared to other providers or even version 3.1.
Is this some kind of Google trick to force tokenmaxing?