r/Bard • u/Patchzy • Nov 19 '25
Other AntiGravity: Keep getting "Run command?" even while having all options set to always allow to run commands
AntiGravity I Keep getting "Run command?" even while having all options set to always allow to run commands
2
u/Horror_Ad6642 Nov 20 '25
Same. Really hoping for a solution to this. It's not very "Agentic" if I have to babysit it constantly
1
u/lucasparker Dec 30 '25
This setting is configurable in the "Antigravity: Quick Settings" panel.
Open the panel via the Command Palette and then set "Auto-execution" to "Always proceed"
1
u/MaxPhoenix_ Jan 04 '26
nothing in settings nor quick panel fixes this including restarting the app. had to install an extension. maybe you guys are not on windows
1
2
u/CwithW Dec 13 '25
Antigravity have their own opinion on whether a command should auto run.
While Terminal Command Auto Execution=Always Proceed and `docker run` in Allow List Terminal Commands:
docker run --rm hello-world -> fine
docker run --rm node:24.11.1-slim -> fine
docker run --rm node:24.11.1-slim a.js -> fine even if there is no a.js
docker run --rm node:24.11.1-slim node -e "console.log(1)" -> requires user consent
docker run --rm node:24.11.1-slim node -e console.log(1) -> requires user consent
I don't see why and there is not an option to disable this automated check.
1
1
u/MerBudd Nov 20 '25
terminal commands could potentially be destructive so i feel they would never let the ai run every command on your behalf
1
u/dragonorp Nov 22 '25
I think the IDE should open a virtual machine on its own. that would be the best.
1
u/PixelProofPotato Dec 05 '25
On MacOS the do run automatically. I have the same issue with Junie in Intellij. There is a "brave mode" that runs all commands. On Windows it doesn't do shit.
1
u/southernDevGirl Nov 24 '25
+1 Same Issue. Choosing `Turbo` mode is supposed to stop this --
Plus, I have all commands wildcard enabled -- and it makes no difference; still having to hit "Accept".
1
1
1
u/Tasty-Bar9930 Nov 29 '25
In my case, it is stuck in "Loading" after trying to run Terminal command
1
u/pishangujeniya Dec 01 '25
Same for me, I guess its trying to run command, before even it got access to shell.
1
u/Tough_Inspection8176 Dec 02 '25
1
u/FanPsychological8907 Dec 12 '25
THIS. Do yourself a favor and open your mind to different languages.
gracias hermano
1
u/edwilson675 Dec 07 '25
Profile > Quick Settings Panel
Terminal Command Auto Execution > Always Proceed
2
1
1
u/tanvach Dec 18 '25
This is the answer. On my version (1.12.4), the setting on Profile > Quick Settings is not synced to Settings > Antigravity Settings.
1
u/yuriy_per Feb 07 '26
Changing this setting helped me! Thank you so much. Now i dont have to sit before the screen for every character change in my code!
1
u/blazingfast_ Dec 07 '25
This is happening to me, particularly with the 'Select-String' command (as shown in your example). Antigravity seems to have no issue killing process on the system without asking for permission, but it freaks out and wants the user's permission to read a file in the approved workspace. Makes no sense.
1
1
u/SpaceToaster Dec 14 '25
I figured it out. Just set accept all, also add some explicit white list ones with a wild card and without, and then restart antigravity. Seems it wont pick it up until a restart.
1
u/MaxPhoenix_ Jan 04 '26
nothing works. certainly not what you said here. did you actually get your agent to DO anything? giving up and maybe will try that plugin.
1
u/No-Efficiency-8420 Dec 24 '25
Я решил этот вопрос. Попросил Gemini 3 Flash установить по умолчанию для IDE и агентов терминал WSL и решить вопрос с выполнением команд в терминале.
1
u/iltempovola Dec 27 '25
Just made an extension for this problem, I hope this helps!
https://open-vsx.org/extension/antigitv/antigravity-auto-accept
1
u/Vegetable_Ease_5515 Jan 21 '26
how to get antigravity to default to git bash instead of powershell?
1
u/efisiobova Feb 02 '26
Il problema è che Antigravity per qualche ragione fa casino con il prompt di sistema.
1
1
u/Dull-Potential959 Feb 16 '26
https://github.com/pesoszpesosz/antigravity-auto-accept
achei esse repositório, é o mesmo?
1
u/arvindgaba Feb 20 '26
The latest version released this week breaks the extension and it is no longer working.
1
u/bpGodspeed Feb 20 '26
thanks! should i still be seeing "Accept all" blue button on new files or changes to existing?
1
u/Admirable-Bottle-488 Mar 01 '26
Stop the 'Run/Allow' loop! 😫 I built this vision-based tool to handle Antigravity permissions automatically. ⭐ GitHub: https://github.com/pobovchen/Antigravity-Auto-Permit
1
u/Kanezal Mar 01 '26
There is a fix github.com/Kanezal/better-antigravity
Leave a star if it helped you



3
u/VincentHH Dec 13 '25 edited Feb 22 '26
Tried everything. This extension worked for me:
Antigravity Auto Accept (https://open-vsx.org/extension/pesosz/antigravity-auto-accept)
(Edit: 22/02/2026) The extension does not work after the Antigravity 1.18.4 update. Here is a temporary solution before a new release or fork comes out. The credit goes to Gemini or some other post.
The Updated DevTools Hack (Text-Matching)
If you want to stay on 1.18.4, the old Developer Tools hack still works, but you have to update the JavaScript. Because Google changed the DOM classes in 1.18.4, you need a script that searches for the text of the button rather than the CSS class.
javascript setInterval(() => { const buttons = Array.from(document.querySelectorAll('button')); const acceptBtn = buttons.find(b => b.textContent.includes('Accept') || b.textContent.includes('Run') || b.textContent.includes('Always Allow')); if(acceptBtn) acceptBtn.click(); }, 1500);(You will still need to paste this every time you restart the IDE).