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 startup banner to cf-sandbox images

+547
+5
apps/cf-sandbox/deploy/amp/Dockerfile
··· 76 76 echo 'stty sane' >> ~/.bashrc && \ 77 77 echo '. "$HOME/.bashrc"' >> ~/.profile 78 78 79 + COPY banner.sh /root/.local/bin 80 + 81 + RUN chmod a+x /root/.local/bin/banner.sh && \ 82 + echo banner.sh >> ~/.bashrc 83 + 79 84 WORKDIR /workspace 80 85 81 86 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/amp/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`amp`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+6
apps/cf-sandbox/deploy/claude/Dockerfile
··· 78 78 echo 'stty sane' >> ~/.bashrc && \ 79 79 echo '. "$HOME/.bashrc"' >> ~/.profile 80 80 81 + 82 + COPY banner.sh /root/.local/bin 83 + 84 + RUN chmod a+x /root/.local/bin/banner.sh && \ 85 + echo banner.sh >> ~/.bashrc 86 + 81 87 WORKDIR /workspace 82 88 83 89 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/claude/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`claude`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+5
apps/cf-sandbox/deploy/codex/Dockerfile
··· 77 77 echo 'stty sane' >> ~/.bashrc && \ 78 78 echo '. "$HOME/.bashrc"' >> ~/.profile 79 79 80 + COPY banner.sh /root/.local/bin 81 + 82 + RUN chmod a+x /root/.local/bin/banner.sh && \ 83 + echo banner.sh >> ~/.bashrc 84 + 80 85 WORKDIR /workspace 81 86 82 87 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/codex/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`codex`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+5
apps/cf-sandbox/deploy/copilot/Dockerfile
··· 78 78 echo 'stty sane' >> ~/.bashrc && \ 79 79 echo '. "$HOME/.bashrc"' >> ~/.profile 80 80 81 + COPY banner.sh /root/.local/bin 82 + 83 + RUN chmod a+x /root/.local/bin/banner.sh && \ 84 + echo banner.sh >> ~/.bashrc 85 + 81 86 WORKDIR /workspace 82 87 83 88 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/copilot/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`copilot`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+6
apps/cf-sandbox/deploy/docker/Dockerfile
··· 25 25 echo "Docker is ready"\n\ 26 26 wait\n' > /home/rootless/boot-docker-for-dind.sh && chmod +x /home/rootless/boot-docker-for-dind.sh 27 27 28 + 29 + COPY banner.sh /root/.local/bin 30 + 31 + RUN chmod a+x /root/.local/bin/banner.sh && \ 32 + echo banner.sh >> ~/.bashrc 33 + 28 34 WORKDIR /workspace 29 35 30 36 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/docker/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`docker`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+6
apps/cf-sandbox/deploy/gemini/Dockerfile
··· 78 78 echo 'stty sane' >> ~/.bashrc && \ 79 79 echo '. "$HOME/.bashrc"' >> ~/.profile 80 80 81 + 82 + COPY banner.sh /root/.local/bin 83 + 84 + RUN chmod a+x /root/.local/bin/banner.sh && \ 85 + echo banner.sh >> ~/.bashrc 86 + 81 87 WORKDIR /workspace 82 88 83 89 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/gemini/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`gemini`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+6
apps/cf-sandbox/deploy/kilo/Dockerfile
··· 77 77 echo 'stty sane' >> ~/.bashrc && \ 78 78 echo '. "$HOME/.bashrc"' >> ~/.profile 79 79 80 + 81 + COPY banner.sh /root/.local/bin 82 + 83 + RUN chmod a+x /root/.local/bin/banner.sh && \ 84 + echo banner.sh >> ~/.bashrc 85 + 80 86 WORKDIR /workspace 81 87 82 88 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/kilo/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`kilo`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+5
apps/cf-sandbox/deploy/kiro/Dockerfile
··· 78 78 echo 'stty sane' >> ~/.bashrc && \ 79 79 echo '. "$HOME/.bashrc"' >> ~/.profile 80 80 81 + COPY banner.sh /root/.local/bin 82 + 83 + RUN chmod a+x /root/.local/bin/banner.sh && \ 84 + echo banner.sh >> ~/.bashrc 85 + 81 86 WORKDIR /workspace 82 87 83 88 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/kiro/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`kiro-cli`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+4
apps/cf-sandbox/deploy/mise/Dockerfile
··· 42 42 RUN echo 'stty sane' >> ~/.bashrc && \ 43 43 echo '. "$HOME/.bashrc"' >> ~/.profile 44 44 45 + COPY banner.sh /root/.local/bin 46 + 47 + RUN chmod a+x /root/.local/bin/banner.sh && \ 48 + echo banner.sh >> ~/.bashrc 45 49 46 50 WORKDIR /workspace 47 51
+27
apps/cf-sandbox/deploy/mise/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`mise`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+5
apps/cf-sandbox/deploy/nix/Dockerfile
··· 62 62 RUN echo 'stty sane' >> ~/.bashrc && \ 63 63 echo '. "$HOME/.bashrc"' >> ~/.profile 64 64 65 + COPY banner.sh /root/.local/bin 66 + 67 + RUN chmod a+x /root/.local/bin/banner.sh && \ 68 + echo banner.sh >> ~/.bashrc 69 + 65 70 WORKDIR /workspace 66 71 67 72 EXPOSE 8080
+27
apps/cf-sandbox/deploy/nix/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`nix`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+5
apps/cf-sandbox/deploy/nullclaw/Dockerfile
··· 82 82 mv nullclaw /root/.local/bin && \ 83 83 chmod +x /root/.local/bin/nullclaw 84 84 85 + COPY banner.sh /root/.local/bin 86 + 87 + RUN chmod a+x /root/.local/bin/banner.sh && \ 88 + echo banner.sh >> ~/.bashrc 89 + 85 90 WORKDIR /workspace 86 91 87 92 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/nullclaw/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`nullclaw`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+5
apps/cf-sandbox/deploy/openclaw/Dockerfile
··· 78 78 echo 'stty sane' >> ~/.bashrc && \ 79 79 echo '. "$HOME/.bashrc"' >> ~/.profile 80 80 81 + COPY banner.sh /root/.local/bin 82 + 83 + RUN chmod a+x /root/.local/bin/banner.sh && \ 84 + echo banner.sh >> ~/.bashrc 85 + 81 86 WORKDIR /workspace 82 87 83 88 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/openclaw/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`openclaw`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+5
apps/cf-sandbox/deploy/opencode/Dockerfile
··· 77 77 echo 'stty sane >> ~/.bashrc' && \ 78 78 echo '. "$HOME/.bashrc"' >> ~/.profile 79 79 80 + COPY banner.sh /root/.local/bin 81 + 82 + RUN chmod a+x /root/.local/bin/banner.sh && \ 83 + echo banner.sh >> ~/.bashrc 84 + 80 85 WORKDIR /workspace 81 86 82 87 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/opencode/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`opencode`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+5
apps/cf-sandbox/deploy/opencrust/Dockerfile
··· 76 76 mv opencrust /root/.local/bin && \ 77 77 chmod +x /root/.local/bin/opencrust 78 78 79 + COPY banner.sh /root/.local/bin 80 + 81 + RUN chmod a+x /root/.local/bin/banner.sh && \ 82 + echo banner.sh >> ~/.bashrc 83 + 79 84 WORKDIR /workspace 80 85 81 86 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/opencrust/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`opencrust`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+5
apps/cf-sandbox/deploy/picoclaw/Dockerfile
··· 83 83 tar -xzf /tmp/picoclaw.tar.gz -C /root/.local/bin && \ 84 84 chmod +x /root/.local/bin/picoclaw 85 85 86 + COPY banner.sh /root/.local/bin 87 + 88 + RUN chmod a+x /root/.local/bin/banner.sh && \ 89 + echo banner.sh >> ~/.bashrc 90 + 86 91 WORKDIR /workspace 87 92 88 93 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/picoclaw/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`picoclaw`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+5
apps/cf-sandbox/deploy/pkgx/Dockerfile
··· 41 41 42 42 RUN echo 'stty sane >> ~/.bashrc' && echo '. "$HOME/.bashrc"' >> ~/.profile 43 43 44 + COPY banner.sh /root/.local/bin 45 + 46 + RUN chmod a+x /root/.local/bin/banner.sh && \ 47 + echo banner.sh >> ~/.bashrc 48 + 44 49 WORKDIR /workspace 45 50 46 51 EXPOSE 8080
+27
apps/cf-sandbox/deploy/pkgx/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`pkgx`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF
+5
apps/cf-sandbox/deploy/zeroclaw/Dockerfile
··· 77 77 tar -xzf /tmp/zeroclaw.tar.gz -C /root/.local/bin && \ 78 78 chmod +x /root/.local/bin/zeroclaw 79 79 80 + COPY banner.sh /root/.local/bin 81 + 82 + RUN chmod a+x /root/.local/bin/banner.sh && \ 83 + echo banner.sh >> ~/.bashrc 84 + 80 85 WORKDIR /workspace 81 86 82 87 ENV COMMAND_TIMEOUT_MS=300000
+27
apps/cf-sandbox/deploy/zeroclaw/banner.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')" 4 + readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')" 5 + readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')" 6 + readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')" 7 + 8 + cat << EOF 9 + ${CYAN} 10 + ██████╗ ██████╗ ██████╗██╗ ██╗███████╗████████╗███████╗███╗ ██╗██╗ ██╗ 11 + ██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ██║██║ ██║ 12 + ██████╔╝██║ ██║██║ █████╔╝ █████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║ 13 + ██╔═══╝ ██║ ██║██║ ██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║╚██╗██║╚██╗ ██╔╝ 14 + ██║ ╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ███████╗██║ ╚████║ ╚████╔╝ 15 + ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═══╝ 16 + ${NO_COLOR} 17 + 🚀 Pocketenv Sandbox Ready 18 + ────────────────────────────────────────────────────────────────────── 19 + 20 + 🧠 Ephemeral. Isolated. 21 + 🔐 Safe environment — experiment freely. 22 + 23 + Type ${MAGENTA}`zeroclaw`${NO_COLOR} to get started. 24 + 25 + Happy hacking! 26 + 27 + EOF