← Claude Docs

Claude Code on mobile - Claude Code Docs

Claude Docs · August 7, 2026
The Claude app for iOS and Android is a client for Claude Code sessions that allows users to access cloud-based sessions, control local sessions via Remote Control, or submit tasks through Dispatch. Cloud sessions run on Anthropic's infrastructure and persist across devices, while Remote Control keeps code execution local while enabling phone-based control. The app has limitations such as unavailable local-only commands and restricted permission modes, though it provides push notifications for task completion and decision requests.

Detailed Analysis

Anthropic's Claude Code documentation reveals a mobile architecture built around a client-server separation: the iOS and Android apps never execute code themselves but instead serve as interfaces into three distinct execution environments—cloud-hosted sessions, a user's own machine via Remote Control, or the Desktop app via a feature called Dispatch. This design choice reflects a deliberate engineering decision to keep the mobile footprint lightweight while extending full development capability to phones, letting users start, monitor, and steer coding sessions without requiring the phone itself to handle compilation, file access, or execution.

The three modes serve different practical needs. Cloud sessions run on Anthropic-managed infrastructure and persist independently of any device, meaning a task started on a laptop can be checked and continued from a phone, and vice versa—useful for asynchronous work where a laptop might be closed or powered off. Remote Control, by contrast, requires the originating machine to stay powered on, since it pipes commands from the phone to a live local session, preserving local filesystem and execution context while enabling remote steering. Dispatch offers a third path, treating mobile messages as tasks that spawn sessions within the Desktop app. This tri-modal approach signals that Anthropic sees mobile not as a standalone coding environment but as a control and monitoring surface for work happening elsewhere—an acknowledgment that serious software development still fundamentally happens on more capable machines, even as demand grows for checking in, approving changes, or nudging an AI agent from a phone.

Notable in this release is the attention to workflow continuity features like push notifications when long-running tasks complete or need human input, and the ability to watch pull requests for CI failures or review comments automatically. These details point to a broader design philosophy: Claude Code is increasingly positioned as an autonomous or semi-autonomous agent capable of working for extended periods with minimal supervision, requiring humans to intervene only at key decision points. The permission-mode restrictions on mobile—disallowing "Bypass permissions" and limiting "Auto" mode to cloud sessions only—also indicate Anthropic's cautious approach to agentic coding, maintaining tighter guardrails when a human is further removed from the execution environment, presumably to prevent unsupervised code changes from mobile devices where oversight is inherently more limited.

This mobile expansion fits into a broader industry trend of AI coding assistants evolving from simple autocomplete tools into distributed, asynchronous agents that operate across multiple surfaces—terminal, web, Slack, messaging channels like Telegram and Discord, and now mobile apps. Competitors including GitHub Copilot, Cursor, and various agentic coding startups are racing to establish similar multi-surface presence, recognizing that developer trust and adoption increasingly hinge on how well an AI assistant integrates into existing workflows rather than replacing them outright. By building mobile primarily as a monitoring and steering layer rather than a full IDE replacement, Anthropic is betting that the future of AI-assisted coding involves long-running, semi-autonomous agents that developers check in on periodically—a model that mirrors how engineering managers oversee human teams rather than how individual programmers write code line-by-line. This approach also underscores the growing importance of session persistence, cross-device continuity, and notification systems as core infrastructure for agentic AI products, not just the underlying language model capabilities themselves.

Read original article →