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.

Add Deno and Bun to cf-sandbox Dockerfile

Increase Cloudflare retry attempts from 5 to 15

+6 -2
+5 -1
apps/cf-sandbox/Dockerfile
··· 33 33 @kilocode/cli \ 34 34 pm2 35 35 36 - ENV PATH="/root/.local/bin:${PATH}" 36 + RUN curl -fsSL https://deno.land/install.sh | sh 37 + 38 + RUN curl -fsSL https://bun.sh/install | bash 39 + 40 + ENV PATH="${HOME}/.deno/bin:${HOME}/.local/bin:${PATH}" 37 41 38 42 WORKDIR /workspace 39 43
+1 -1
apps/cf-sandbox/src/providers/cloudflare/index.ts
··· 7 7 8 8 private async retryWithBackoff<T>( 9 9 fn: () => Promise<T>, 10 - maxRetries: number = 5, 10 + maxRetries: number = 15, 11 11 initialDelayMs: number = 500, 12 12 ): Promise<T> { 13 13 let lastError: Error | null = null;