Telegram Bot to Manage Headless Claude Code Channels via tmux

Claude Code recently added an experimental Channels feature that lets you chat with Claude directly in Telegram. The catch: it requires a persistent terminal session. If you run Claude Code on a headless server, SSH-ing in just to restart it gets old fast.
Developer Yury Gagarin built a small Telegram bot to manage Claude Code Channels sessions on a remote Linux server. The bot (Python, stdlib only — zero external dependencies) wraps Claude Code in a tmux session and exposes Telegram commands:
/launch– start Claude Code Channels in a new tmux session/stop– kill the tmux session/restart– stop then launch/status– check if Claude is running/logs– tail recent output
The bot includes a watchdog that notifies you (or auto-restarts) if the Claude process dies. It’s designed to run persistently on a home server, controlled entirely from your phone via Telegram.
Repo: github.com/gagarinyury/claude-channels-launcher
Who it’s for: developers who run Claude Code on a headless Linux server and want to manage it from Telegram without SSH.
📖 Read the full source: r/ClaudeAI
👀 See Also

Detrix MCP Server Adds Runtime Debugging to AI Coding Agents
Detrix is a free, open-source MCP server that enables MCP-compatible agents to observe live variables in running code without restarts or code changes. It supports Python, Go, and Rust applications running locally or in Docker.

OpenClaw Shared Memory Plugin: SQLite-Based Multi-Agent Coordination
A developer built a plugin for OpenClaw multi-agent setups that enables agents to share memory using SQLite, eliminating the need for external services. The plugin allows explicit memory sharing via a tool, automatic context extraction, access control, entity tracking, and contradiction detection.

TOON MCP server reduces tool result tokens by 30-60% in OpenClaw
An MCP server that compresses structured JSON tool results into the TOON format can cut token usage by 30-60% for tabular data like database queries and API responses, helping delay context window compaction in OpenClaw sessions.

OpenClaw Memos Plugin Addresses Memory Handoff Issues in AI Coding Agents
A Reddit user shares how the Claude code leak highlighted problems with memory handoff in AI coding agents, where bloated transcripts cause issues during model switching. They implemented the memos plugin in OpenClaw with selective recall strategy to compress recent work and drop stale tool calls.