The iOS guide gives you the clean, opinionated path: use the chat apps, and turn your phone into a secure remote into a real computer. This page is the honest second pass: why each choice was made, what else you could have done, what we deliberately left out, the trending tools worth a look, how to get ready for Mythos, and how to lock the whole thing down.
Written May 2026. The AI-tooling world moves weekly — this is a snapshot of the landscape and the reasoning, not gospel.
Each guide step made one choice for clarity. Here's the reasoning and the roads not taken — all shaped by one hard limit: Apple doesn't let you install command-line tools on iOS.
We chose: the official Claude / ChatGPT / Gemini apps, plus an SSH client (Blink Shell or Termius) to reach a real machine.
Why: on iOS the agents themselves can't run locally, so the phone splits into two roles — chat client and remote terminal. The SSH client is the key that unlocks every power step below.
Alternatives worth knowingWe chose: install each on a real computer, then drive it from the phone over SSH.
Why: it's the only path on iOS — and it's genuinely how people code from an iPad: SSH into a real box over Tailscale and run the agent there.
Alternatives & notes (May 2026)/goal workflows, and auto mode — all of which you drive perfectly well over an SSH session from the phone.We chose: Tailscale, signed-in with one account across devices.
AlternativesWe chose: run Ollama on a real machine, reach it from an iOS client (Enchanted) over Tailscale.
Alternatives & better models11434.qwen3-family (Qwen 3.6 is a standout for coding, with MCP-native tool use and huge context), deepseek-r1 for reasoning, gemma3 for small/fast. The model choice happens on the machine, not the phone.Apple doesn't allow VS Code as an iOS app — and no future App Store policy is likely to change that, because Apple won't approve apps that run downloaded code. But that's not the end of the editor story: a real iPad (12.9"-class screen, Magic Keyboard, fast Wi-Fi) plus a browser tab pointed at a cloud editor is, honestly, a viable workstation for review and small edits. The trick is knowing which "browser-based VS Code" path fits which moment. Here are the four real paths, with the tradeoffs Apple's sandbox imposes.
The four real paths on iOSnano/vim directly. No graphical editor, just a window into a real one running elsewhere.https://vscode.dev. A real-feeling VS Code in a browser tab; sign in with GitHub to edit any of your repos. Limitations: no terminal, no extensions that need a runtime, ephemeral session.linuxserver/code-server on a NAS or droplet you already own (see the Synology and Linux analyses), reach it over Tailscale from Safari. You own the box; the iPad is just the screen.mosh, which survives flaky connections — important on an iPad you carry between Wi-Fi networks.vim users among you, but tellingly missed.vim on the remote box. Fastest, no browser involved.The guide is deliberately a clean six-step spine. That clarity has a cost: real omissions. Here they are, honestly, with the reason each was cut.
| Left out | What it is | Why it was cut |
|---|---|---|
| Hermes Agent | Nous Research's self-improving, model-agnostic coding agent | Genuinely an oversight in v1 — it's newer and niche. Now added as the bonus 4th agent. Like the others, it's remote-only on iOS: install it on a real machine and drive it over SSH. |
| Native CLIs on iOS | Running Claude Code, Codex, etc. on the phone | Not an omission — an impossibility, and the defining constraint of the whole guide. Apple's App Store rules and sandbox forbid apps from downloading and executing arbitrary code, so there's no Termux-style app that can run the real agents. That's why everything routes to a remote machine. |
| A Git client | Working Copy — version control on iPad | Assumed away. If you do real editing on the iPad itself rather than over SSH, Working Copy is the tool to save and undo work; otherwise Git lives on the remote box. |
| MCP servers | The standard plugs that connect agents to your files, GitHub, browser, data | The biggest conceptual omission — but they run on the remote machine, not the phone (see the tool map). The guide installs the agents; MCP is the next layer, configured where the agent actually runs. |
| A hardware keyboard | A Bluetooth or Magic Keyboard for the iPad | Left implicit. Coding over SSH on the on-screen keyboard is miserable; a real keyboard is what turns "an iPad on the couch" into a genuine workstation. Worth saying out loud. |
| Biometric lock | Face ID / passcode on the device and the SSH app | Skipped for flow, but it's security-critical: the phone holds the keys to your whole network. Covered in Security below. |
Scanning the developer conversation on X and GitHub in May 2026, here's what's hot that the guide doesn't yet mention. On iOS you can't run any of these on the phone — you reach them by SSHing into a real machine over Tailscale, where they actually run.
The open-source CLI agent everyone's talking about — 150K+ stars, ~6.5M monthly devs. LSP integration, multiple parallel sessions, shareable session links. The strongest "free, bring-your-own-model" alternative to Claude Code.
A terminal that's also an agent cockpit — runs Claude Code, Codex, and others in one windowed UI with panes. Lives on the remote machine you SSH into, not the phone.
Goose (from Block) and OpenHands are open-source autonomous agents that take a goal and run a long multi-step job. The frontier of "set it and walk away."
93K+ stars. A "spec-driven development" workflow that teaches any agent (Claude Code, Copilot, Gemini, etc.) to plan before it codes. Tessl and Kiro play in the same space.
The plug-ins that matter: chrome-devtools-mcp (let an agent drive Chrome), filesystem, GitHub, database connectors. This is the fastest-moving, highest-leverage area right now.
An agentic open model with a 1M-token context and MCP-native tool use — a serious local option for Ollama on your home machine if its hardware can handle it.
Mythos is Anthropic's first model specialized for one domain: defensive cybersecurity. Announced April 7 2026 as the engine of Project Glasswing, it has already found a 27-year-old vulnerability in OpenBSD and bugs in FFmpeg. It is invitation-only ($25 / $125 per million tokens), shipped to 12 founding orgs and 40+ critical-infrastructure partners — not a download. Full briefing →
On iOS this matters in a specific way: the iPhone or iPad is a remote / monitoring endpoint, not where Mythos-class tools run. "Getting ready" is about preparing the machines your phone connects to:
On iOS you're not running the powerful tools — you're holding the keys to the machines that do. Your phone connects over SSH to real computers that can read files, run commands, and reach the internet. That makes the phone a high-value target and the connections worth protecting. Here's how — iOS specifics first, then universal rules adapted to "you're connecting to remote machines from the phone."
ANTHROPIC_BASE_URL setting and exfiltrate your API key in plaintext. Anthropic patched it before disclosure — the lesson stands: keep Claude Code updated, install only from official sources, and be suspicious of any config that reroutes where a tool "phones home." (On iOS that config lives on the remote machine you SSH into — secure it there.).env files, SSH keys, .secrets, and certificates — and to not read its own config.OLLAMA_HOST=0.0.0.0:11434 exposes the model server to the network; only do it behind Tailscale, never on a public IP or open Wi-Fi. There's no password on Ollama by default.