← Hacker News

LiteClaw – Use Claude Code from Your Phone via Telegram

Hacker News · breaktheready · April 6, 2026
A developer created LiteClaw, a Python script that connects Telegram to a Claude Code session running in tmux, allowing remote access to Claude Code from a phone without requiring an API key or additional cost. The tool works by sending typed messages to the terminal and capturing the screen output, operating on any Linux or WSL system through a single Python file.

Detailed Analysis

LiteClaw is a minimal open-source Python utility created to solve a specific, practical problem: enabling mobile access to a Claude Code session when no official or sanctioned mobile interface exists. Built by a self-described "power user" rather than a professional developer, the tool works by bridging Telegram and a tmux terminal session running on a Linux or WSL machine. It uses tmux's `send-keys` command to inject messages into the terminal and `capture-pane` to harvest the resulting screen output, then relays that output back to the user via Telegram. The entire implementation fits in a single Python file, requires no additional API key, and carries no extra cost beyond an existing Claude Code subscription.

The project emerged directly from the shutdown of OpenClaw, a predecessor tool that apparently served a similar purpose until Anthropic discontinued it. This context is significant: LiteClaw is not a product born of ambition but of necessity, reflecting how deeply some users have integrated Claude Code into their daily workflows. The "dumb simple" architecture — terminal screen-scraping via tmux — is a deliberate tradeoff, prioritizing ease of deployment and zero additional cost over sophistication. Optional response summarization is the sole concession to user experience beyond raw terminal relay, suggesting the tool is aimed squarely at technically comfortable users who are willing to accept rough edges in exchange for speed and autonomy.

LiteClaw exists in a rapidly shifting competitive landscape. Anthropic has since introduced an official Claude Code "Channels" feature that provides native Telegram, Discord, and Slack integrations via a plugin system. The official approach requires more setup — including the Bun runtime, a Telegram bot token obtained via BotFather, and plugin installation via a dedicated CLI command — but it offers meaningful advantages: multi-platform support, an allowlist security mode, and documented, maintained integration directly from Anthropic. LiteClaw, by contrast, sidesteps this complexity at the cost of security transparency, since its model grants the Telegram interface essentially unrestricted access to whatever is running in the tmux session.

The broader pattern illustrated by both LiteClaw and the tools it competes with — OpenClaw, the official Channels plugin — speaks to a consistent and growing user demand for asynchronous, mobile-accessible AI coding assistants. Developers and power users increasingly treat AI coding environments not as desktop-bound tools but as persistent, always-available services they expect to interact with across devices and contexts. The fact that a non-programmer was motivated to build a working remote interface underscores how high user expectations have risen, and how the gap between those expectations and official tooling has historically been filled by community-driven workarounds. Anthropic's decision to close that gap with an official Channels feature signals that the company recognizes mobile and remote access as a core use-case demand rather than a niche request.

LiteClaw's emergence and quick obsolescence by official competition is itself a microcosm of the current AI tooling ecosystem: fast-moving, community-responsive, and increasingly subject to platform consolidation as AI providers build first-party infrastructure around workflows that third-party developers pioneered. Whether LiteClaw retains a user base will likely depend on how frictionless Anthropic's official Telegram plugin proves in practice, and whether the simplicity of a single Python file continues to hold appeal for users wary of heavier dependency chains.

Read original article →