If the agent is running on your machine, it will suspend when you put your laptop asleep. I prefer using a remote Linux VM to let the coding agent keep working. I’m quite happy with exe.dev for this. My laptop is asleep upstairs but I have an agent coding away in a browser tab on the tablet I’m using. I could also check on it from my phone. But it might also be nice if a setup similar to exe.dev were available for se…
> it will suspend when you put your laptop asleep It is possible to simply not do that. Laptops work just fine as servers. They even have a builtin monitor and UPS.
Show HN: Clawk – Give coding agents a disposable Linux VM, not your laptop
81–90 of 177 posts
Re: Show HN: Clawk – Give coding agents a disposable Linux VM, not your laptop
#82Does Codex run its own sandbox? I see that sometimes it runs commands without asking, which then fail for some reason, and it asks to run them again "outside of the sandbox"
Cursor has something similar. I don't know about Claude Code but I assume it does as well since Anthropic has open sourced their own sandboxing tool.
Re: Show HN: Clawk – Give coding agents a disposable Linux VM, not your laptop
#83Earlier quoted context omitted.
It's called https://github.com/features/codespaces or https://codeanywhere.com/ or https://claude.ai/code/
None of the products you mentioned support macOS environments needed by iOS/tvOS/etc developers. (CodeAnywhere went out of business) Bitrise has been doing macOS VMs for CI for 10 years, so we extended the existing product to this use-case.
Re: Show HN: Clawk – Give coding agents a disposable Linux VM, not your laptop
#84Re: Show HN: Clawk – Give coding agents a disposable Linux VM, not your laptop
#85Re: Show HN: Clawk – Give coding agents a disposable Linux VM, not your laptop
#86Re: Show HN: Clawk – Give coding agents a disposable Linux VM, not your laptop
#87If the agent is running on your machine, it will suspend when you put your laptop asleep. I prefer using a remote Linux VM to let the coding agent keep working. I’m quite happy with exe.dev for this. My laptop is asleep upstairs but I have an agent coding away in a browser tab on the tablet I’m using. I could also check on it from my phone. But it might also be nice if a setup similar to exe.dev were available for se…
https://paseo.sh/ supports self-hosting, though I've only used it a mild amount tbh.
Re: Show HN: Clawk – Give coding agents a disposable Linux VM, not your laptop
#88I still don't understand the point of all these VMs and containers for agents. Just create a separate user on your machine without sudo privileges, switch to it in your terminal and run all the agents you want without it being able to reach your files. What am I missing?
A separate user is a good start but LLM tests themselves show they can cleverly bypass guardrails if they figure out they are in a sandboxed environment of some kind, right?
So, I read those test results as: an LLM is less likely to do something crazy if it thinks it has the whole environment to itself.
Re: Show HN: Clawk – Give coding agents a disposable Linux VM, not your laptop
#89Re: Show HN: Clawk – Give coding agents a disposable Linux VM, not your laptop
#90I am certainly no expert in this space so it is quite possible I'm missing something critical, but what seems to work for me is a Podman image I built on my computer with some basic things I need (using OpenCode, but I imagine any other agent could be used instead): FROM docker.io/archlinux:base RUN pacman -Syu --noconfirm && \ pacman -S --noconfirm \ base-devel \ git \ curl \ uv \ opencode && \ pacman -Scc --noconfi…