claude-code - 💡(How to fix) Fix Mobile companion for Claude Code — chat from phone, execute on laptop [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#47079Fetched 2026-04-13 05:42:03
View on GitHub
Comments
1
Participants
2
Timeline
2
Reactions
0
Timeline (top)
commented ×1labeled ×1

Root Cause

Developers don't stop thinking when they leave the keyboard. The ideas that come up at dinner, on a walk, in the shower — those are often the best ones. Right now they go into Notes apps and get lost. A project-aware mobile chat would capture them in context.

Fix Action

Fix / Workaround

What exists today (the workaround)

Current workaround details (for anyone who wants to try it today)

Code Example

## Session StartCheck the Issue Queue
   Before doing anything else, check for open GitHub Issues the user filed from mobile:
   gh issue list --state open --json number,title,labels,createdAt
   Report what you find. Act based on label: question = respond, try-this = do it, idea = evaluate.
RAW_BUFFERClick to expand / collapse

The use case

I use Claude Code on my laptop as my primary development tool. When I'm away from the laptop (commuting, walking, thinking on the couch), I want to fire off ideas, ask questions, and queue up work — and have my next Claude Code session pick them up automatically.

What exists today (the workaround)

I'm using GitHub Issues as a bridge. I file issues from GitHub mobile with labels (idea / question / try-this), and my project's CLAUDE.md has a session-start instruction that makes Claude Code check the issue queue and report what's open. It works, but it's duct tape — the ideas lose the conversational context of how they came up, and I can't have a back-and-forth from my phone.

What would be native

A way to chat with Claude from the mobile app (or claude.ai) that's connected to a Claude Code project. Specifically:

  • I select a project (e.g., trusted-marketplace) from my phone
  • I chat with Claude — brainstorm, ask questions, plan, review
  • Claude has read-only awareness of the project (CLAUDE.md, docs, maybe recent git log) but does NOT execute commands
  • When I open Claude Code on my laptop, the conversation context from my phone session is available — Claude knows what I discussed and can act on it
  • Execution (file edits, terminal commands, git) only happens on the laptop

The key insight

Separate thinking/planning (works anywhere, phone-friendly) from execution (needs a terminal, laptop-only). The bridge is shared project context + conversation continuity across devices.

Why this matters

Developers don't stop thinking when they leave the keyboard. The ideas that come up at dinner, on a walk, in the shower — those are often the best ones. Right now they go into Notes apps and get lost. A project-aware mobile chat would capture them in context.

Current workaround details (for anyone who wants to try it today)

  1. Create labels on your repo: idea (green), question (purple), try-this (red)
  2. Add a session-start instruction to your project's CLAUDE.md:
    ## Session Start — Check the Issue Queue
    Before doing anything else, check for open GitHub Issues the user filed from mobile:
    gh issue list --state open --json number,title,labels,createdAt
    Report what you find. Act based on label: question = respond, try-this = do it, idea = evaluate.
  3. Install GitHub mobile on your phone
  4. File issues with labels from your phone whenever inspiration strikes
  5. Next Claude Code session picks them up automatically

It works. But native support would be transformative.

extent analysis

TL;DR

Implement a native mobile chat feature in Claude Code that allows users to chat with Claude, connected to a specific project, and syncs conversation context across devices.

Guidance

  • To achieve the desired functionality, consider developing a mobile app that integrates with Claude Code and allows users to select a project and chat with Claude.
  • The mobile app should have read-only access to the project's context, including CLAUDE.md, docs, and recent git log, to provide relevant information to the user.
  • When the user opens Claude Code on their laptop, the conversation context from the mobile app should be synced and available for Claude to act on.
  • To mitigate the current workaround's limitations, focus on developing a seamless and native experience that captures ideas and context in a project-aware environment.

Example

A potential implementation could involve creating a mobile app with a project selection feature, a chat interface, and integration with Claude Code's API to sync conversation context.

Notes

The current workaround using GitHub Issues and CLAUDE.md instructions provides a functional but limited solution. A native mobile chat feature would require significant development and integration with Claude Code, but would offer a more streamlined and effective experience for users.

Recommendation

Apply a workaround by enhancing the current GitHub Issues-based solution, such as by adding more labels or refining the CLAUDE.md instructions, until a native mobile chat feature can be developed and implemented.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

claude-code - 💡(How to fix) Fix Mobile companion for Claude Code — chat from phone, execute on laptop [1 comments, 2 participants]