Is anyone else seeing inconsistent behavior with the “Always Proceed” option for Terminal Command Auto Execution in Google Antigravity?
The expected behavior is that this setting will disable all safety check and execute any command written by agent.
Me too, there any solution ?
There’s a workaround for this, [Extension]open -vsx.org /extension/pesosz/antigravity-auto-accept
And then in Antigravity, go to Help > Toggle Developer Tools and open the Console, paste this updated script and hit Enter:
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);
Original solution Reddit
Hello @Lee_H @M1SqL ,
Thank you for flagging this issue. I have observed the same behavior and have escalated the matter to the relevant engineering team.
Meanwhile, you could try the workaround shared by @haizk
To help us with deeper investigation, please provide any supporting details, such as logs or screenshots, if available.
Fix for this: github.com/Kanezal/better-antigravity. Run node fixes/auto-run-fix/patch.js and restart. One-command revert if needed.
Hello everyone!
Thank you for your patience. The reported issue should now be resolved. Please let us know if you encounter any further difficulties.