I will go first. I run a multi tenant AI workspace. Every user has their own agent with its own tool list, and those tools reach real things, files, email, a browser, a database. Tenant isolation is enforced server side on every read and write, so it does not depend on the interface behaving. What I could not defend is one layer under that. When the agent calls a tool, the tool runs with the rights of the application, not the rights of the person who asked. The isolation is only as good as the code path sitting in front of it. There is no token in the middle saying this call is on behalf of this user and may touch only these things, because nothing in the stack issues one at that granularity. I know the shape of the fix. Short lived, per request, scoped to the caller. I have not built it yet, and working that out is most of why this room exists. Your turn. What are you building, and which part of it would not survive that question?