← Reddit

Losing prompts when switching between Claude Code sessions on mobile — anyone else?

Reddit · elhnim · July 10, 2026
A user reported that prompts disappear when switching between Claude Code sessions on mobile, with submitted instructions vanishing rather than being queued for processing. When returning to the original session, the user must re-type and resubmit the lost instructions, defeating the purpose of running parallel sessions. The user characterized this as a state-management issue that prevents effective multi-session workflows.

Detailed Analysis

A Reddit user's report of lost prompts when toggling between parallel Claude Code sessions on mobile surfaces a narrower but consequential usability issue in Anthropic's coding-agent ecosystem. The complaint is specific and reproducible in the user's telling: instructions typed into Session A vanish—not queued, not processed—the moment attention shifts to Session B and back. For a tool explicitly marketed around agentic, multi-session workflows, this is more than cosmetic friction. It points to a state-management gap in how the mobile client handles foreground/background session switching, where input appears to be tied to an active UI context rather than persisted at the moment of submission.

The significance of this bug lies in the gap between Claude Code's intended use case and its actual behavior under real-world conditions. The entire value proposition of running parallel agent sessions is that each one continues working autonomously while the user's attention is elsewhere—checking on one task while another executes in the background. If prompts are silently dropped rather than queued server-side or persisted client-side upon send, users are forced into a synchronous, single-threaded interaction pattern that defeats the purpose of parallelism. This is a familiar failure mode in early-stage agentic tooling: the backend may support concurrent task execution, but the mobile interface layer hasn't caught up with equivalent guarantees around input persistence and state reconciliation across sessions.

This kind of report is emblematic of a broader pattern in the current wave of AI coding assistants, where companies are racing to ship agentic capabilities—multi-session orchestration, autonomous task execution, background processing—faster than the surrounding infrastructure (session state, offline queuing, mobile-specific UX) can mature to support them reliably. Anthropic, OpenAI, and competitors like Cursor and Replit have all pushed toward "agents that work while you're away" as a flagship narrative, but the mobile experience often lags behind desktop implementations, where session state is easier to maintain persistently. Bugs like this one erode trust in exactly the workflows vendors are trying to promote, since users who lose work to a dropped prompt are less likely to rely on parallel sessions for anything consequential.

The thread itself—posted to r/ClaudeAI without an official Anthropic response noted—also illustrates how much of the real-time bug discovery and troubleshooting for Claude Code currently happens in community forums rather than through formal support channels. Users are left to determine on their own whether an issue is a "known limitation" or an unreported edge case, and to develop informal workarounds (such as avoiding session switches entirely or manually re-confirming prompt delivery) in the absence of official guidance. As Anthropic continues to expand Claude Code's footprint into more complex, multi-session, cross-device use cases, this kind of gap between marketed capability and mobile-specific reliability is likely to remain a recurring theme until session persistence and input handling are hardened to match the ambitions of the agentic workflow model.

Read original article →