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.

Copy tigrisfs to /usr/bin in sandbox providers

+8 -1
+2
apps/sandbox/src/providers/daytona/mod.ts
··· 106 106 .sh`command -v tigrisfs || tar -xzf /tmp/tigrisfs.tar.gz -C $HOME/.local/bin`; 107 107 await this.sh`command -v tigrisfs || rm -rf /tmp/tigrisfs.tar.gz`; 108 108 await this.sh`command -v tigrisfs || chmod +x $HOME/.local/bin/tigrisfs`; 109 + await this 110 + .sh`cp $HOME/.local/bin/tigrisfs /usr/bin || sudo cp $HOME/.local/bin/tigrisfs /usr/bin || true`; 109 111 await this.sh`mkdir -p ${path} || sudo mkdir -p ${path}`; 110 112 111 113 await this.mkdir(path);
+2
apps/sandbox/src/providers/deno/mod.ts
··· 117 117 .sh`command -v tigrisfs || tar -xzf /tmp/tigrisfs.tar.gz -C $HOME/.local/bin`; 118 118 await this.sh`command -v tigrisfs || rm -rf /tmp/tigrisfs.tar.gz`; 119 119 await this.sh`command -v tigrisfs || chmod +x $HOME/.local/bin/tigrisfs`; 120 + await this 121 + .sh`cp $HOME/.local/bin/tigrisfs /usr/bin || sudo cp $HOME/.local/bin/tigrisfs /usr/bin || true`; 120 122 await this.sh`mkdir -p ${path} || sudo mkdir -p ${path}`; 121 123 122 124 await this.mkdir(path);
+2 -1
apps/sandbox/src/providers/sprites/mod.ts
··· 139 139 .sh`command -v tigrisfs || tar -xzf /tmp/tigrisfs.tar.gz -C $HOME/.local/bin`; 140 140 await this.sh`command -v tigrisfs || rm -rf /tmp/tigrisfs.tar.gz`; 141 141 await this.sh`command -v tigrisfs || chmod +x $HOME/.local/bin/tigrisfs`; 142 - 142 + await this 143 + .sh`cp $HOME/.local/bin/tigrisfs /usr/bin || sudo cp $HOME/.local/bin/tigrisfs /usr/bin || true`; 143 144 await this.sh`mkdir -p ${path} || sudo mkdir -p ${path}`; 144 145 145 146 await this.mkdir(path);
+2
apps/sandbox/src/providers/vercel/mod.ts
··· 96 96 .sh`command -v tigrisfs || tar -xzf /tmp/tigrisfs.tar.gz -C $HOME/.local/bin`; 97 97 await this.sh`command -v tigrisfs || rm -rf /tmp/tigrisfs.tar.gz`; 98 98 await this.sh`command -v tigrisfs || chmod +x $HOME/.local/bin/tigrisfs`; 99 + await this 100 + .sh`cp $HOME/.local/bin/tigrisfs /usr/bin || sudo cp $HOME/.local/bin/tigrisfs /usr/bin || true`; 99 101 await this.sh`mkdir -p ${path} || sudo mkdir -p ${path}`; 100 102 101 103 await this.mkdir(path);