(paths: string[])
| 187 | // cross-user global prompt cache. The sandbox already sets $TMPDIR at runtime. |
| 188 | const claudeTempDir = getClaudeTempDir() |
| 189 | const normalizeAllowOnly = (paths: string[]): string[] => |
| 190 | [...new Set(paths)].map(p => (p === claudeTempDir ? '$TMPDIR' : p)) |
| 191 | |
| 192 | const filesystemConfig = { |
| 193 | read: { |
no outgoing calls
no test coverage detected