I vibe coded a TUI that just shows running lxd containers I hit 'n' to toggle all network access minus anthropic and openai URLs. I use pi (sometimes claude, always on bypass) and I auto allow everything. I only toggle manual approval in rare cases like running a script or command that needs to touch a production system and I need to validate everything. Normally my container has full write access to staging so it ca…
Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue
41–50 of 200 posts
Re: Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue
#42--dangerously-skip-permissions is the only way to fly. Of course your environment needs to be properly containerized and autobackup set up, so even rm -rf from your harness would do nothing. Life is too short to spend on replying to permissions requests.
Re: Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue
#43--dangerously-skip-permissions is the only way to fly. Of course your environment needs to be properly containerized and autobackup set up, so even rm -rf from your harness would do nothing. Life is too short to spend on replying to permissions requests.
If you want to work on the code then you need to have access to the repositories, so you need the github token. Then, to test the app, you may need your own backend token. And VPN. Of course, only to DEV, of course all tokens encrypted. So, only DEV and your branch of the code is in danger. In my view, even that is pretty bad.
So, how does such a set up work?
Re: Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue
#44Use this and save yourself: claude --dangerously-skip-permissions
Re: Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue
#45Re: Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue
#46Earlier quoted context omitted.
This is why having a human in the loop isn't enough because they will cut corners and skip reviewing what they should review.
A tool that pushes people into permissions fatigue is in fact the proper recipient of the blame. The tool in question here is the entire system though, including the OS with insufficient permission boundaries in userspace, not just the agent
Re: Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue
#47This current thread is proof of AI psychosis.
What the hell is going on in this thread? This isn't good. The "threats" don't make sense. Oh no, all the sensitive information in my package.json...
Re: Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue
#48 rm -rf node_modules && npm install
but actually if you're only removing `node_modules` and you have a working package-lock.json already, what you want is `npm ci`; `npm install` can mutate package-lock.json and potentially expose you to supply chain attacks. If you use `npm ci` I think you don't need to `rm -rf node_modules`, either.Anyway you should generally run `npm ci` except when you're deliberately updating your actual dependencies. I'd only permit an `npm install` if I was adding or updating a dependency, or I'd just reviewed an `npm ci` failure.
Re: Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue
#49Re: Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue
#50Apparently me telling it that’s the wrong first step and saying “no” is bad; but I’ve seen AI tools waste a ton of time doing a bunch of random work before they do their job.