Tech News
← Back to articles

Claude Code On-the-Go

read original related products more articles

I run six Claude Code agents in parallel from my phone. No laptop, no desktop—just Termius on iOS and a cloud VM.

The Setup

flowchart LR A[Phone] -->|Termius + mosh| B[Tailscale VPN] B --> C[Vultr VM] C --> D[Claude Code] D -->|PreToolUse hook| E[Poke webhook] E -->|Push notification| A

The loop is: kick off a task, pocket the phone, get notified when Claude needs input. Async development from anywhere.

Infrastructure

A Vultr VM in Silicon Valley:

Spec Value Instance vhf-8c-32gb Cost $0.29/hr (~$7/day when running) Access Tailscale-only (no public SSH)

I pay only when working. Two scripts handle lifecycle:

vm-start # Start VM, wait for Tailscale, connect via mosh vm-stop # Halt VM

I also have an iOS Shortcut that calls the Vultr API directly—start the VM from my phone before I even open Termius.

... continue reading