the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Install and load FUSE in Vercel sandbox

Ensure fuse3 and fuse3-libs are installed via dnf and load the
fuse kernel module so tigrisfs can be used in the Vercel sandbox

+2
+2
apps/sandbox/src/providers/vercel/mod.ts
··· 100 100 await this 101 101 .sh`cp ~/.local/bin/tigrisfs /usr/bin || sudo cp ~/.local/bin/tigrisfs /usr/bin || true`; 102 102 await this.sh`mkdir -p ${path} || sudo mkdir -p ${path}`; 103 + await this.sh`sudo dnf install -y fuse3 fuse3-libs`; 104 + await this.sh`sudo modprobe fuse`; 103 105 104 106 await this.mkdir(path); 105 107