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.

Use sudo-first apt-get in sandbox presets

Remove the outdated `if` guard from kiro.yaml so the dependencies step
always runs

+19 -20
+1 -1
apps/sandbox/src/presets/amp.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install AMP and Tailscale 6 6 if: "[ ! -f $HOME/.amp-setup-done ] || ! command -v amp &> /dev/null"
+1 -1
apps/sandbox/src/presets/claude.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install Claude and Tailscale 6 6 if: "[ ! -f $HOME/.claude-setup-done ]"
+1 -1
apps/sandbox/src/presets/codex.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install Codex and Tailscale 6 6 if: "[ ! -f $HOME/.codex-setup-done ]"
+1 -1
apps/sandbox/src/presets/copilot.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install Copilot and Tailscale 6 6 if: "[ ! -f $HOME/.copilot-setup-done ]"
+1 -1
apps/sandbox/src/presets/crush.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install Crush and Tailscale 6 6 if: "[ ! -f $HOME/.crush-setup-done ] || ! command -v crush >/dev/null 2>&1"
+1 -1
apps/sandbox/src/presets/cursor.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install Cursor and Tailscale 6 6 if: "[ ! -f $HOME/.cursor-setup-done ] || ! command -v cursor &> /dev/null"
+1 -1
apps/sandbox/src/presets/gemini.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install Gemini and Tailscale 6 6 if: "[ ! -f $HOME/.gemini-setup-done ]"
+1 -1
apps/sandbox/src/presets/kilo.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install Kilo and Tailscale 6 6 if: "[ ! -f $HOME/.kilo-setup-done ] || ! command -v kilo &> /dev/null"
+1 -2
apps/sandbox/src/presets/kiro.yaml
··· 1 1 - name: Install Dependencies 2 - if: "[ ! -f $HOME/.dependencies-setup-done ]" 3 2 run: | 4 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 5 4 6 5 - name: Install Kiro and Tailscale 7 6 if: "[ ! -f $HOME/.kiro-setup-done ]"
+1 -1
apps/sandbox/src/presets/mise.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install Mise and Tailscale 6 6 if: "[ ! -f $HOME/.mise-setup-done ] || ! command -v mise &> /dev/null"
+1 -1
apps/sandbox/src/presets/nix.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install Nix and Tailscale 6 6 if: "[ ! -f $HOME/.mise-setup-done ] || ! command -v nix &> /dev/null"
+1 -1
apps/sandbox/src/presets/nullclaw.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install NullClaw and Tailscale 6 6 if: "[ ! -f $HOME/.nullclaw-setup-done ] || ! command -v nullclaw &>/dev/null"
+1 -1
apps/sandbox/src/presets/openclaw.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install OpenClaw and Tailscale 6 6 if: "[ ! -f $HOME/.openclaw-setup-done ] || ! command -v openclaw &> /dev/null"
+1 -1
apps/sandbox/src/presets/opencode.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install OpenCode and Tailscale 6 6 if: "[ ! -f $HOME/.opencode-setup-done ] || ! command -v opencode &>/dev/null"
+1 -1
apps/sandbox/src/presets/opencrust.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install Opencrust and Tailscale 6 6 if: "[ ! -f $HOME/.opencrust-setup-done ] || ! command -v opencrust &>/dev/null"
+1 -1
apps/sandbox/src/presets/picoclaw.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install PicoClaw and Tailscale 6 6 if: "[ ! -f $HOME/.picoclaw-setup-done ] || ! command -v picoclaw &>/dev/null"
+1 -1
apps/sandbox/src/presets/pkgx.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install Pkgx and Tailscale 6 6 if: "[ ! -f $HOME/.pkgx-setup-done ] || ! command -v pkgx &> /dev/null"
+1 -1
apps/sandbox/src/presets/wasmer.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install Wasmer and Tailscale 6 6 if: "[ ! -f $HOME/.wasmer-setup-done ] || ! command -v wasmer &> /dev/null"
+1 -1
apps/sandbox/src/presets/zeroclaw.yaml
··· 1 1 - name: Install Dependencies 2 2 run: | 3 - apt-get update && apt-get install -y curl unzip wget fontconfig || sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig 3 + sudo apt-get update && sudo apt-get install -y curl unzip wget fontconfig || apt-get update && apt-get install -y curl unzip wget fontconfig 4 4 5 5 - name: Install ZeroClaw and Tailscale 6 6 if: "[ ! -f $HOME/.zeroclaw-setup-done ] || ! command -v zeroclaw &> /dev/null"