Enhanced Claude Code Telegram Plugin Adds Voice, Stickers, Threading

A developer has created an enhanced fork of the official Claude Code Telegram plugin, adding several practical features not included in the base release. The fork is open source and available on GitHub.
Key Features Added
- MarkdownV2 formatting: Bold, italic, and code blocks now render correctly in Telegram instead of showing raw characters.
- Voice & audio message support: Users can send voice notes from their phones, and Claude transcribes them using Whisper.
- Sticker & GIF support: Claude can now see stickers and GIFs by converting them to frame collages.
- Conversation threading: In group chats, Claude follows reply chains up to 3 levels deep and responds in the correct thread.
- Inline keyboard buttons: Claude can send tappable choices and wait for user responses.
- Emoji reaction tracking: Users can react with 👍👎🔥 and Claude receives the feedback.
- Reaction status indicators: Uses 👀 when read, 🔥 when working, and 👍 when done.
- Emoji validation: Eliminates cryptic REACTION_INVALID errors.
Setup
The fork is designed as a drop-in replacement for the official plugin. Setup involves cloning the repository, copying one file, and restarting. It works with the existing official plugin infrastructure.
The developer built this enhanced version within hours of the official plugin's release, noting that the original "ships only the basics." They're seeking contributors to help develop the project further.
📖 Read the full source: r/ClaudeAI
👀 See Also

Governor: A Claude Code Plugin to Cut Token Waste via Output Compression, Context Slimming, and Tool Filtering
Governor is a Claude Code plugin that reduces token/context waste through compact professional output, memory file compression, tool-output filtering, and drift guardrails. Benchmarks show 55.5% output token savings vs control.

Ktx: An Executable Context Layer to Fix Data Agent Accuracy
Ktx is an open-source executable context layer that makes agents reliable on your data stack by combining Markdown wiki ingestion with YAML semantic definitions.

ProofShot: CLI for AI Agents to Verify UI Code with Browser Recording
ProofShot is a CLI tool that lets AI coding agents open a browser, interact with pages, record sessions, and collect errors, then bundles everything into a self-contained HTML file for review. It works with any AI agent via shell commands and is packaged as a skill.

Why Deterministic Workflows Outperform AI-Driven Orchestration for Agent Systems
A developer with a year of experience building agent systems shares that AI-driven orchestration failed reliably due to non-deterministic routing, compounding errors, cost explosion, and impossible debugging. Switching to deterministic workflows with code-based orchestration eliminated orchestration failures.