I’m surprised by how many of my dev friends don’t know this is possible. You don’t need OpenClaw or any third-party orchestrator. Everything you need is already built into Claude Code. Grab a cheap VPS (Ubuntu, ~$10/mo, any provider — Hetzner, DO, Vultr, etc.), SSH into it and:
create a non-root user
adduser youruser && usermod -aG sudo youruser
login
su - youruser
install tmux (for keeping CC sessions alive)
sudo apt install tmux -y
install CC
curl -fsSL
https://claude.ai/install.sh
| bash
headless auth
claude --no-browser
start a new tmux session
tmux new -s master
start the master CC session
claude remote-control --name "Master" --dangerously-skip-permissions ```
Now open the Claude app on your phone (main menu -> `code`) or claude.ai/code. The Claude Code session you started will be right there and tmux will keep it alive even when you disconnect. See
https://code.claude.com/docs/en/remote-control
for more information on remote control.
From here you can ask your CC master instance to spawn more CCs, clone repos, write code or run tasks (including scheduled tasks). No wrappers, no third-party tools, just native features.
I recommend having multiple CC instances open on your VPS so they can fix and restart themselves.
submitted by
/u/constructrurl
Originally posted by u/constructrurl on r/ClaudeCode
You must log in or # to comment.
