Claude Code From Your Phone: Three Ways to Run a Full Dev Environment in Your Pocket

By James Aspinwall, co-written by Alfred Pennyworth (my trusted AI) — February 28, 2026, 12:59


I write code from my phone. Not pseudocode. Not notes-to-self. Actual commits that hit production, pushed from the same pool chair where I check the wind forecast before a kite session.

This isn’t a gimmick. Claude Code is an agentic coding tool — it reads files, writes changes, runs tests, and manages git. The work happens on the machine. You just need a way to talk to it. A phone is enough.

There are now three ways to do this, each with different tradeoffs. I’ve used all of them.


Method 1: Remote Control (Official, Easiest)

Anthropic shipped Remote Control on February 25, 2026. It’s the simplest path from laptop to phone.

How it works: Claude Code keeps running on your machine. You scan a QR code with the Claude mobile app. The phone becomes a window into your local session — same files, same MCP servers, same project config. Nothing moves to the cloud.

Setup:

# From your project directory
claude remote-control

# Or from an existing session
/rc

A QR code appears. Scan it with the Claude app on iOS or Android. You’re in.

What’s good:

What’s not:

Best for: Stepping away from the desk mid-task. Start a refactor at your desk, walk to the kitchen, approve the file changes from your phone. The session is already running — you’re just moving the steering wheel.


Method 2: SSH + tmux (DIY, Most Flexible)

This is the approach Harper Reed wrote about — and the one I use daily. It’s the early-2000s workflow resurrected with modern tools, and it’s the most powerful option if you’re comfortable with a terminal.

How it works: Your workstation runs Claude Code inside a tmux session. You SSH into it from a phone terminal app. Tmux keeps the session alive regardless of connection state.

Setup:

  1. Tailscale — creates a private mesh network across all your devices. No firewall configuration, no port forwarding, no dynamic DNS. Your phone and your workstation are on the same virtual network.

  2. Terminal app — Blink Shell (iOS) or Termius (iOS/Android). These are real terminal emulators, not toys.

  3. tmux — session persistence. Detach on your laptop, reattach from your phone. The Claude Code session never stops running.

  4. mosh (optional) — handles flaky mobile connections better than raw SSH. The connection pauses through tunnels, elevators, and network switches, then resumes without dropping the session.

# On your workstation
tmux new -s claude
cd ~/projects/my-app
claude

# From your phone (via Blink or Termius)
mosh workstation -- tmux attach -t claude

What’s good:

What’s not:

Best for: Power users who want full control. Developers who already live in the terminal. Anyone running Claude Code on a remote server (cloud VM, home lab, office workstation).


Method 3: Your Own Web Interface

This is what I built. The Elixir MCP server at workingagents.ai exposes Claude’s capabilities through a web UI, REST API, and MCP tools. WhatsApp integration means I can send a message to a contact and get Claude-powered responses on tasks, contacts, and monitoring — all from the phone’s native messaging app.

How it works: The server runs Claude-connected services (task management, CRM, monitoring, blog management). Each service is accessible through multiple interfaces — web pages for the browser, REST endpoints for automation, MCP tools for AI agents, and WhatsApp for messaging.

What’s different from Remote Control:

What’s good:

What’s not:

Best for: Teams or individuals who want persistent AI-powered tools accessible from any device. People who’ve outgrown the “chat with an AI” paradigm and want structured, domain-specific interfaces.


The Phone as a Steering Wheel

The common thread across all three methods: the phone isn’t doing the work. The phone is directing the work.

Claude Code is an agent. It reads your codebase, plans changes, writes code, runs tests, and iterates. That loop doesn’t need a 27-inch monitor. It needs intent. A sentence or two of direction. “Fix the failing test in auth_test.exs.” “Add rate limiting to the login endpoint.” “Run the test suite and fix whatever breaks.”

The agent does the heavy lifting. You approve, redirect, or refine. That interaction model fits on a 6-inch screen.

I’ve shipped real features from my phone:

None of this required seeing the full codebase on screen. It required trusting the agent to do its job and having a channel to communicate with it.


Which Method to Use

Remote Control SSH + tmux Custom Web Interface
Setup time 2 minutes 30 minutes Weeks-months
Subscription Max ($100-200/mo) Any (even API keys) Self-hosted
Persistence Until terminal closes Indefinite Always on
Multiple sessions One per instance Unlimited N/A
Full terminal access No (Claude only) Yes (everything) No (tools only)
Works offline-to-online Reconnects after sleep mosh survives anything Always available
Non-developers can use it With Claude app, yes No Yes (web/WhatsApp)

Just want to step away from the desk? Remote Control. Scan, type, done.

Want full control over everything? SSH + tmux + Tailscale. The power user’s setup.

Want persistent, structured tools for a team? Build your own interface. It’s more work upfront, but the result is something that doesn’t depend on your laptop being open.


The Real Shift

A year ago, coding from a phone was a novelty — editing a single file in a GitHub mobile app, maybe fixing a typo. Nobody was shipping features.

Now the phone is a legitimate development surface. Not because phone screens got bigger or phone keyboards got better. Because the unit of work changed. You’re not typing code. You’re directing an agent that types code. And direction is something a phone handles just fine.

The laptop is becoming the build server. The phone is becoming the control room.