DEV Community

Raullen Chai
Raullen Chai

Posted on

Control Claude Code from Your Phone with Claw

The Problem

You're deep in a Claude Code session. It's working through a complex task.

But you need to step away - grab coffee, take a call, pick up kids.

What do you do? Leave it running and hope nothing goes wrong?

## The Solution: Claw

I built Claw (CLaude AnyWhere) - a zero-dependency Python tool that
lets
you monitor and control Claude Code from any device with a browser.

Claw Screenshot

## Features

  • ๐Ÿ‘€ Live terminal view - see what Claude is doing in real-time
  • โšก Quick actions - tap yes, no, continue, or Ctrl+C
  • ๐Ÿ“ฑ Mobile-first - designed for phones with pull-to-refresh
  • ๐ŸŒ Access anywhere - --share flag creates instant public URL

## Quick Start


bash
  # Install
  pip install claw-cli

  # Run with remote access
  claw --share

  That's it. Open the URL on your phone. You're in control.

  How It Works

  Claw is a lightweight HTTP server that:
  1. Captures tmux pane content in real-time
  2. Sends keystrokes via tmux send-keys
  3. Serves a mobile-optimized dashboard

  No dependencies beyond Python stdlib. Works on macOS, Linux, and Windows
  (WSL).

  Try It Out

  GitHub: https://github.com/raullenchai/claw
  PyPI: https://pypi.org/project/claw-cli/

  Contributions welcome! Check out our good first issue labels.

  ---
  Built for developers who got tired of walking back to their desks ๐Ÿฆž
Enter fullscreen mode Exit fullscreen mode

Top comments (0)