The Laptop is Home. You're on a Train. Your AI is Working.
Anthropic's March 2026 update brought three distinct ways to control AI agents from your pocket. Stop the LinkedIn hype-scroll and learn what actually works.
There isn't just one 'Claude Dispatch'. Anthropic shipped Cowork Dispatch (for office tasks), Remote Control (for developers), and Channels (for Telegram/Discord integration).
Which Feature Do You Need?
The Mobile Claude Ecosystem
- User: Knowledge Workers.
- Goal: Assign desktop tasks (email drafting, file organization) from your phone.
- Requires: macOS, Pro/Max plan.
- User: Software Developers.
- Goal: Steer active coding sessions, fix CI/CD failures, or trigger builds.
- Requires: Claude Code v2.1.51+.
- User: Automation Power Users.
- Goal: Two-way Telegram/Discord bots that can access your local machine's context.
- Requires: Claude Code v2.1.80+.
Security Architecture: The Secure Relay Pattern
Unlike typical remote desktop tools, Claude Code doesn't open inbound ports (no SSH exposure). It uses a "Relay Layer" to keep your machine hidden.
- Machine: Your local terminal runs Claude Code and initiates an outbound connection.
- Relay: Anthropic's secure relay layer handles the handshake.
- Phone: You connect to the relay via a short-lived, encrypted OAuth session.
- Result: Zero open ports, 10-minute automatic network timeout for inactivity.
When Claude uses computer control, it can be 'prompt injected' by malicious content on your screen. Never run Dispatch against untrusted documents, public URLs, or open browser tabs with third-party sites.
Deep Dive: Setting Up Channels (Telegram)
The most powerful feature is Channels, which lets you build a personal bot that has "eyes and ears" on your local dev environment.
# 1. Create a bot with BotFather on Telegram
# 2. Get your BOT_TOKEN
# 3. Configure Claude Code
claude --channels telegram --token "YOUR_BOT_TOKEN"
Once running, you can message your bot:
- "What's the status of the current build?"
- "Deploy the latest commit to production."
- "Find all TODO comments in the auth directory."
Even on mobile, Claude will ask for permission before running dangerous commands (e.g., rm -rf). You approve the action directly in the chat window.
Cowork Dispatch: The "Executive Assistant" Mode
Cowork Dispatch is built into the Claude macOS app. It allows you to delegate "Computer Use" tasks from your iPhone.
Cowork Workflow
Open Claude on Mac → Settings → Enable 'Remote Tasks'.
On iPhone: "Find the invoice in my Downloads, summarize the totals, and draft an email to the accounting team."
Claude takes control of your screen. You see the 'Hand' icon on your Mac moving.
Task finishes. You get a push notification on your phone with the draft or report.
Anthropic vs. OpenClaw: The Honest Truth
The Agent War
- Pro: SOC2 Compliance, 1-command setup, seamless mobile apps.
- Con: macOS heavy, requires monthly subscription ($20/mo+).
- Pro: Free, 20+ platforms (WhatsApp, Signal), full Linux support.
- Con: Hard setup, higher security risks (Atomic Stealer vulnerabilities).
Key Takeaways
Dispatch is an assignment tool. You don't watch it work; you assign a task and check back for the report.
Never use --dangerously-skip-permissions with Remote Control. Always approve tool use from your phone to stay in control of your filesystem.
Sessions die if your terminal closes or machine sleeps. Use the caffeinate utility on Mac to keep tasks running while you're away.