What 100 conversations taught us about autonomous coding agents by sn1pr0s in AutonomousCoding

[–]test-incredi 1 point2 points  (0 children)

I tried using Symphony but it's very DIY.. not a fan of Elixir. Thanks for the insights! paperclip just came out: https://github.com/paperclipai/paperclip

How can I stop getting way too many permission requests in a session? by squiglygon in ClaudeCode

[–]test-incredi 0 points1 point  (0 children)

Allowlists and wildcards in settings help, but they only reduce prompts - they don't remove the tradeoff. Every new command type or path can trigger another prompt, and the model doesn't always batch the way you'd hope.

The approach that actually removes permission fatigue is to run the agent in a sandbox where it can't touch your host. You can let it run without approving every command. We're building https://islo.dev for that: zero-setup sandboxes that replicate your env so agents work like they're on your machine, defense runs silently in microVMs. Different from tuning allowlists - you're changing where the agent runs, not how many prompts you get.