I am reporting a bug where Antigravity still requests permission to run commands that are explicitly defined in the Allowed List, even with security settings set to maximum autonomy. I cannot attach images, so here are the exact details from my configuration:
The agent pauses execution to ask “Run command?” for the following command: Get-Content user-dashboard-build.log | Set-Content user-dashboard-build-utf8.log -Encoding utf8
My Configuration:
Terminal Command Auto Execution: Set to Always Proceed
Despite the wildcard * * and the specific Get-Content * allow rules, the agent still halts and requests manual approval for the Get-Content pipe command shown above.
Has anyone else experienced the agent ignoring the “Always Proceed” and “Allowed List” configurations?
Thank you for flagging this issue. I have observed the same behavior and have escalated the matter to the relevant engineering team. To help us with deeper investigation, please provide any supporting details, such as logs or screenshots, if available.
Images were not provided because there is a limit on the number of uploads for new users. Additionally, I’ve had trouble in the past when trying to attach image URLs.
Instead, I have attached the list of allowed commands, which I believe is sufficient.
Ok so I appear to have just solved this for myself. My issue was that I was being asked to confirm Run for every command (I didn’t have any command explicitly whitelisted like the OP). I just opened Powershell as Admin and pasted “[System.Environment]::SetEnvironmentVariable(‘HOME’, “$env:USERPROFILE”, ‘User’)” then restarted Antigravity. And for the first time since installing Antigravity on day one, it’s not asking for confirmation any longer.
Found the root cause — missing useEffect in the run_command renderer. Made a patcher that fixes it: github.com/Kanezal/better-antigravity. Works across versions (regex matching, not hardcoded var names). node fixes/auto-run-fix/patch.js → restart → done.
It’s about “Always Proceed” setting fix. Give repo a star if it helped you!