[Plugin Bug] Telegram plugin consumes incoming messages but never delivers them to the session (Windows)
Description
The official Telegram plugin (telegram@claude-plugins-official) polls getUpdates and consumes all incoming messages, but never delivers them to the Claude Code session as <channel source="telegram"> tags. Messages are silently lost.
Sending works fine (the reply tool sends messages successfully). Only receiving is broken.
Environment
- OS: Windows Server 2025 Datacenter 10.0.26100
- Claude Code: latest (installed via npm)
- Plugin:
telegram@claude-plugins-official
Steps to Reproduce
- Enable the Telegram plugin, pair a Telegram user
- Start a new Claude Code session
- Send a message to the bot from Telegram
- The message never appears in the session
Diagnosis
getMereturns OK - bot token is validreplytool sends messages successfully- External
getUpdatescall returns 409 Conflict - confirming the plugin IS actively polling - But no
<channel source="telegram">tags ever appear in the session pending_update_countis always 0 - plugin consumes the updates- After
/reload-plugins: polling stops entirely (no more 409), but messages still do not arrive. ManualgetUpdatesnow works and shows the messages were queued by Telegram - proving they were never forwarded to the session.
Expected Behavior
Incoming Telegram messages should appear as <channel source="telegram" ...> tags in the session, as documented.
Actual Behavior
Messages are consumed by the plugin polling loop but never forwarded to the session. They are permanently lost.
Workaround
Disabled the plugin ("telegram@claude-plugins-official": false in settings.json) and built a custom polling bridge script that saves messages to local files.
Notes
This may be Windows-specific. The IPC/event mechanism between the plugin polling thread and the Claude Code session appears to be broken on Windows. The plugin works partially (sending OK, auth OK, polling OK) - only the internal message delivery pipeline fails.
This issue has 3 comments on GitHub. Read the full discussion on GitHub ↗