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

Rift: A Better Alternative to Git Worktrees with Instant Copy-on-Write Snapshots
Rift uses btrfs or APFS snapshots to create instant, space-efficient copies of Git repositories. Initialization, creation, and listing via CLI or JavaScript FFI.

Claude Code Studio: Open-Source Desktop App for Managing Multiple Claude Coding Sessions
Claude Code Studio v0.9.3 is an open-source desktop application that provides a multi-pane interface for managing multiple Claude Code CLI sessions. It addresses common workflow issues like juggling terminal tabs, session persistence, and instruction repetition.

Local RAG Tool Built with Nemotron Nano 9B v2 and vLLM Tool Calling
A developer built a local-first RAG research tool that runs entirely on a single GPU using Nemotron Nano 9B v2 Japanese on vLLM with custom parser plugins for tool calling. The system features a two-step extract-execute flow with bilingual keyword extraction and parallel FTS5/DuckDuckGo search.

Artifactr: Local-first CLI tool for managing AI coding agent artifacts
Artifactr is a free, open-source CLI tool for managing LLM artifacts like skills, commands, and agent definitions. It stores files in portable vaults with no network connections and supports automatic syncing via symlinks.