All articles
Tonis Tiganik--4 min read

ClawTab Is Now on the App Store

The ClawTab mobile companion app is now available on the iOS App Store. Monitor your Claude Code agents, answer permission prompts, enable auto-yes, and get push notifications - all from your iPhone.

ClawTab Is Now on the App Store

TLDR

ClawTab Remote, the mobile companion app for controlling your Claude Code agents, is now available on the iOS App Store. Free download, works with both self-hosted and hosted relay setups.

What the Mobile App Does

The ClawTab mobile app gives you full remote control over your Claude Code agents running on your Mac. Here's what you can do from your phone:

FeatureDescription
Job monitoringSee all running, completed, and scheduled jobs at a glance
Live log streamingWatch agent output in real time as it runs
Permission promptsAnswer Claude Code's yes/no permission questions remotely
Auto-yes modeEnable per-pane auto-acceptance of permission prompts
Push notificationsGet notified when agents ask questions, finish, or fail
Job controlStart, stop, and restart jobs from anywhere
Search and sortFilter jobs by name, group, or project
Workspace sharingLet teammates monitor and respond to your agents

The app connects to your desktop through a relay server using WebSocket over TLS. All communication is encrypted and the relay never stores your code or agent output.

Why a Native App

ClawTab Remote has always been available as a web app at remote.clawtab.cc. The native iOS app adds several things the browser can't do well:

  • Push notifications via APNs - Apple Push Notification service delivers notifications reliably even when the app is closed or your phone is locked. Browser push notifications are less reliable on iOS and require keeping a tab active.
  • Always-on WebSocket - the native app maintains its WebSocket connection in the background more aggressively than a browser tab, so you get faster reconnection and fewer missed updates.
  • Home screen access - tap the icon and you're looking at your agents. No navigating to a URL, no browser chrome eating screen space.
  • Native feel - built with React Native, the app uses native iOS components for navigation, scrolling, and gestures. It feels like an iOS app because it is one.

The web app at remote.clawtab.cc still works and will continue to be maintained. The native app is an upgrade for users who want faster, more reliable access to their agents.

Getting Started

Setup takes under a minute:

  1. Download ClawTab from the App Store
  2. Sign in with your ClawTab account
  3. Make sure your ClawTab desktop app is running and connected to the relay

Your devices pair automatically through the relay server. If you're using the hosted relay at remote.clawtab.cc, everything just works. If you're self-hosting the relay, point the app at your relay URL in Settings.

The app is a free download. You need a ClawTab account and either a self-hosted relay server or a ClawTab Remote subscription ($4.99/mo) for the hosted relay.

How It Works with the Desktop App

The ClawTab desktop app is the brain. It runs on your Mac, manages tmux sessions, detects Claude Code instances, and handles cron scheduling. The mobile app is the remote control.

The architecture looks like this:

  • Desktop app (Tauri, Rust) polls tmux panes for agent output and detects permission prompts
  • Relay server (Rust, Axum) routes messages between desktop and mobile over WebSocket/TLS
  • Mobile app (React Native, iOS) displays job state and sends commands back through the relay

When Claude Code asks a permission question, the desktop detects it in the terminal buffer, parses the numbered options, and sends a notification through the relay. Your phone receives the notification and displays it as a tappable card with option buttons. Tap an option, and the keystroke goes back through the relay to the desktop, which types it into the tmux pane.

The round trip is typically under 100ms. From the agent's perspective, it's as if you typed the answer at your keyboard.

Comparison: Native App vs Web App vs Telegram

ClawTab offers three ways to control your agents remotely. Here's how they compare:

iOS AppWeb AppTelegram
Push notificationsAPNs (reliable)Web Push (less reliable on iOS)Telegram notifications
Live log streamingYesYesNo
Answer questionsYesYesYes
Auto-yesYesYesNo
Job managementFullFullLimited
Background connectionGoodLimitedN/A
Requires installYesNoYes (Telegram)

The iOS app is the best experience. The web app is the most accessible. Telegram is useful for notifications if you already live in Telegram.

Screenshots

ClawTab iOS - notification card with permission prompt ClawTab iOS - job list overview ClawTab iOS - job details with live logs

What's Next

The App Store release is the starting point. We're working on:

  • Android - the React Native codebase supports Android. An Android release is planned.
  • Widgets - iOS home screen widgets showing active agent count and status.
  • Shortcuts integration - trigger ClawTab actions from Siri and the Shortcuts app.
  • Watch app - quick glance at agent status and one-tap approval from your wrist.

The app is open source. Feature requests and contributions are welcome.

Download

Frequently Asked Questions

Yes. ClawTab is available as a free download on the iOS App Store. It's a companion app for controlling Claude Code agents running on your Mac. Download it at https://apps.apple.com/us/app/clawtab/id6759683841

The app itself is a free download. You need a ClawTab account to use it. If you self-host the relay server, everything is free. If you use the hosted relay at remote.clawtab.cc, a ClawTab Remote subscription costs $4.99/month.

Monitor running Claude Code agents, view live log output, answer permission prompts remotely, enable auto-yes mode per agent, get push notifications for job events, start and stop jobs, search and filter your job list, and share workspace access with teammates.

The iOS app is available now on the App Store. Android support is planned - the app is built with React Native which supports both platforms. In the meantime, Android users can use the web app at remote.clawtab.cc.

Yes. The ClawTab desktop app runs on your Mac and manages the Claude Code agents. The mobile app connects to the desktop through a relay server. Without the desktop app running, there are no agents to monitor or control.

ClawTab uses Apple Push Notification service (APNs) to deliver notifications. You get notified when an agent asks a permission question, when a job completes, or when a job fails. Notifications work even when the app is closed or your phone is locked.

Yes. Download ClawTab from the App Store, sign in with your ClawTab account, and your running agents appear automatically. You can answer permission prompts, enable auto-yes, view live logs, and start/stop jobs - all from your iPhone.

Related Articles