LZLZL/AI toolchain/Cloud · Bridge
FREEMedium · Practice D · Cloudbridge

Move only the hands:
the SSH sandbox

2026-08-21 · The first step to the cloud can move half of it

People treat the cloud as a switch: everything local, or everything moved. There is a middle setting: the agent stays on your laptop, its commands run elsewhere. That setting is what most people actually need.

In this pagewhat this setting solves, the seven backends, who it suits. Not in this pagemy remote machines, their addresses or configuration.

1Split "going to the cloud" apart

An always-on agent has two halves, and they can live in different places:

HalfDoesWhere it wants to be
The brainTalks to the model, decides what is nextLocal is easiest: your config, your memory, right there to look at
The handsThe environment where commands actually executeAnywhere — and remote has extra upside
UpsideWhy
IsolationWhen it wrecks the environment, it wrecks the remote box, not your laptop
A clean environmentA dedicated machine, free of your local version conflicts
No workflow changeYou still type on your own computer. Nothing about your day changes

2Seven backends, and choosing

Using Hermes as the example — seven execution backends, read along isolation and cost:

BackendIsolationCostSuits
localNoneZeroWork you fully trust
DockerProcess / filesystemZero (local resources)The default choice for local isolation — no extra machine
SSHWhole machineOne machineThis page's setting — most natural if you already have a box
Modal / DaytonaWhole machineHibernates idle, near-zeroInfrequent use, isolation still wanted
SingularityContainerDependsResearch / HPC environments
Vercel SandboxManaged sandboxUsage-basedAlready in that ecosystem
The idle-hibernating tier deserves its own note

Modal, Daytona and similar hibernate when unused, costing almost nothing, then wake with state intact.

That resolves a standing awkwardness with always-on agents: you need "available whenever", not "running always". Traditionally those were the same purchase — either a machine burning money continuously, or rebuilding the environment every time.

⚠ Do not skip past Docker

If all you want is "do not let it wreck my computer", the Docker backend is enough. No machine, no money.

You only genuinely need a remote box when you also need a fixed egress address, round-the-clock availability, or an independent network position — which is the next page's three tests.

3A bonus: the remote does not have to be yours

The practical convenience of the SSH backend is that it only needs something you can SSH into: a work dev box, a shared build machine, a temporary cloud instance.

So you need not buy a machine to try this. Use what you already have, confirm the model fits how you work, then decide about buying.

4What this step does not fix

Not fixedWhy
Close the laptop, it stopsThe brain is still local. Round-the-clock means moving all of it
Scheduled workSame reason: your machine sleeps, the scheduler sleeps
Exposed secretsThe remote holds keys too. What is isolated is the environment, not the secrets — see page 22
The remote getting wreckedYour laptop is safe; that box still gets wrecked. So do not keep anything irreplaceable on it
One rule: everything on a remote sandbox must be disposable

If its purpose is to let an agent make a mess, it has to be rebuildable at will. Anything that would take half a day to reconstruct should not exist only on that machine.

How to get to "rebuild in one command": page 22.

Sandbox backends Hermes supports local / Docker / SSH / Singularity / Modal / Daytona / Vercel Sandbox; the docs describe Modal and Daytona as offering "serverless persistence — your environment hibernates when idle, costing nearly nothing", and the SSH backend as supporting remote deployment. Official docs, checked 2026-08-21.
Nature of this page The brain/hands split and the comparison table are this site's framing, not an official taxonomy. Each backend's real isolation strength is per its own documentation — this page does not vouch for the security of any sandbox.
Not in this page Which backend I use, where any remote machine is, or how it is configured.

RelatedRead next

D · Cloud
When a VPS is actually required
C · Always-on
Hermes Agent: where OpenClaw leads next
C · Always-on
MCP and the tool surface: what not to install
D · Cloud
Key isolation, monitoring, backups, switching off
An educational and engineering record — not a review or endorsement of any third-party product. Commands, config keys, prices and terms are per each vendor's official docs; this page states when it was checked and all of them can change without notice — verify before you copy anything. Self-hosting is your own responsibility: keys, accounts and data are on you.