claude-code - 💡(How to fix) Fix Channels (Telegram) silently disabled by tengu_harbor feature flag — paying Max subscriber locked out [1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#46334Fetched 2026-04-11 06:23:01
View on GitHub
Comments
0
Participants
1
Timeline
6
Reactions
1
Author
Participants
Timeline (top)
labeled ×5subscribed ×1

Channels feature (Telegram integration) stopped working silently. The tengu_harbor feature flag is set to false server-side, which blocks ALL inbound channel messages. No announcement, no warning, no deprecation notice. Everything looks like it's working — MCP connects, banner says "Listening for channel messages" — but messages never arrive.

Error Message

2026-04-10T16:48:54.794Z [WARN] auto mode disabled: tengu_auto_mode_config.enabled === "disabled" (circuit breaker)

  • The feature appears to work (no error messages!) but silently drops all inbound messages
  1. Show an actual error message when the feature flag is disabled instead of pretending to listen

Root Cause

Root cause (from binary analysis)

Code Example

2026-04-10T16:48:54.794Z [WARN] auto mode disabled: tengu_auto_mode_config.enabled === "disabled" (circuit breaker)
2026-04-10T16:48:55.027Z [DEBUG] MCP server "plugin:telegram:telegram": Successfully connected (transport: stdio) in 257ms
2026-04-10T16:49:01.266Z [DEBUG] MCP server "plugin:telegram:telegram": UNKNOWN connection closed after 6s (cleanly)
RAW_BUFFERClick to expand / collapse

Summary

Channels feature (Telegram integration) stopped working silently. The tengu_harbor feature flag is set to false server-side, which blocks ALL inbound channel messages. No announcement, no warning, no deprecation notice. Everything looks like it's working — MCP connects, banner says "Listening for channel messages" — but messages never arrive.

Environment

  • Claude Code version: 2.1.100 (native binary, Linux x86_64)
  • OS: Ubuntu 24.04, Hetzner VPS
  • Subscription: Claude Max (paying subscriber)
  • Plugin: telegram@claude-plugins-official v0.0.4
  • Last working: April 10, 2026 ~12:49 CEST
  • Stopped working: April 10, 2026 — same day, no config changes on my side

Symptoms

  1. claude --channels plugin:telegram@claude-plugins-official starts normally
  2. Banner displays: "Listening for channel messages from: plugin:telegram@claude-plugins-official"
  3. Telegram MCP server connects successfully (debug log confirms Successfully connected (transport: stdio) in 218ms)
  4. MCP server disconnects after 6-8 seconds (UNKNOWN connection closed after 8s (cleanly))
  5. No inbound messages are delivered — complete silence
  6. Telegram Bot API confirms messages ARE queued (getUpdates returns them)
  7. Outbound tools (reply, react) are still registered in permissions

Debug log evidence

2026-04-10T16:48:54.794Z [WARN] auto mode disabled: tengu_auto_mode_config.enabled === "disabled" (circuit breaker)
2026-04-10T16:48:55.027Z [DEBUG] MCP server "plugin:telegram:telegram": Successfully connected (transport: stdio) in 257ms
2026-04-10T16:49:01.266Z [DEBUG] MCP server "plugin:telegram:telegram": UNKNOWN connection closed after 6s (cleanly)

Root cause (from binary analysis)

The gate function K_$ checks mjH() (which reads tengu_harbor from GrowthBook) at step 2 — before any other validation. When the flag is false, the function returns {action: "skip", kind: "disabled", reason: "channels feature is not currently available"} and drops the connection.

--dangerously-load-development-channels does NOT bypass this check — it only skips the allowlist validation at step 4+. The feature flag at step 2 blocks everything regardless.

What I tried

  • Restarting Claude Code session
  • Reinstalling plugin
  • Using --dangerously-load-development-channels server:telegram
  • Enabling plugin in enabledPlugins settings
  • Running with --debug to trace the issue
  • Verifying Telegram Bot API works (messages are queued, token is valid)
  • Checking CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC is not set

Nothing helps because the block is server-side.

Impact

I'm a paying Claude Max subscriber who migrated from a third-party Telegram integration (OpenClaw) to Anthropic's official Channels solution, trusting it would be supported. I deleted OpenClaw and restructured my entire workflow around Channels.

Now:

  • My Telegram bot is dead with zero warning
  • I have no fallback — the old integration is gone
  • The feature appears to work (no error messages!) but silently drops all inbound messages
  • Hours spent debugging what turned out to be a server-side kill switch

Request

  1. Re-enable tengu_harbor for Max subscribers — or at minimum provide a way to opt in
  2. If Channels is being deprecated, announce it — don't silently disable a feature people depend on
  3. Show an actual error message when the feature flag is disabled instead of pretending to listen
  4. Don't gate paid features behind unstable feature flags that can be toggled without notice

Related issues

  • #46299 — Channels feature silently disabled by tengu_harbor flag
  • #45985 — Telegram MCP server disconnects after 5s
  • #45918 — DISABLE_NONESSENTIAL_TRAFFIC blocks feature flags
  • #35832 — tengu circuit breaker
  • #36503 — Original channels reliability thread

extent analysis

TL;DR

The most likely fix is to wait for the tengu_harbor feature flag to be re-enabled by the server-side administrators or for an official announcement regarding the deprecation of the Channels feature.

Guidance

  • The issue is caused by the tengu_harbor feature flag being set to false server-side, which blocks all inbound channel messages.
  • Verify that the feature flag is still disabled by checking the debug log for the auto mode disabled warning message.
  • Consider reaching out to the Claude Code support team to request re-enabling of the tengu_harbor feature flag for Max subscribers or to inquire about the deprecation status of the Channels feature.
  • As a temporary workaround, you may want to explore alternative Telegram integration solutions, such as the previously used OpenClaw integration, until the issue is resolved.

Notes

The --dangerously-load-development-channels flag does not bypass the tengu_harbor feature flag check, and the issue is not related to the CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC environment variable.

Recommendation

Apply workaround: Reach out to the Claude Code support team to request assistance with re-enabling the tengu_harbor feature flag or to inquire about alternative solutions, as the issue is caused by a server-side configuration change.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING