claude-code - 💡(How to fix) Fix [BUG] Remote Control 'not yet enabled' on Max 20x — caused by CLAUDE_CODE_ENABLE_TELEMETRY=0 silently blocking GrowthBook fetch [1 comments, 2 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#55604Fetched 2026-05-03 04:49:09
View on GitHub
Comments
1
Participants
2
Timeline
6
Reactions
0
Timeline (top)
labeled ×5commented ×1

claude remote-control returns Error: Remote Control is not yet enabled for your account for Max 20x users when CLAUDE_CODE_ENABLE_TELEMETRY=0 is set in ~/.claude/settings.json (under the env block). The error message is misleading — the account is eligible; the GrowthBook feature flag fetch is silently blocked because tengu_ccr_bridge (and several others) are classified as non-essential traffic gated behind telemetry.

Error Message

claude remote-control returns Error: Remote Control is not yet enabled for your account for Max 20x users when CLAUDE_CODE_ENABLE_TELEMETRY=0 is set in ~/.claude/settings.json (under the env block). The error message is misleading — the account is eligible; the GrowthBook feature flag fetch is silently blocked because tengu_ccr_bridge (and several others) are classified as non-essential traffic gated behind telemetry. 3. Observe: Error: Remote Control is not yet enabled for your account. CLAUDE_CODE_ENABLE_TELEMETRY=0 is documented as disabling telemetry, but in practice it also gates the GrowthBook feature-flag fetch (or at least the tengu_ccr_* family). Users who legitimately want to opt out of telemetry are silently locked out of Remote Control with an error message that points them at billing/support instead of the actual cause. 2. Improve the error. not yet enabled for your account should distinguish "your subscription is ineligible" from "feature-flag cache is empty/stale" from "non-essential traffic disabled by env".

Root Cause

claude remote-control returns Error: Remote Control is not yet enabled for your account for Max 20x users when CLAUDE_CODE_ENABLE_TELEMETRY=0 is set in ~/.claude/settings.json (under the env block). The error message is misleading — the account is eligible; the GrowthBook feature flag fetch is silently blocked because tengu_ccr_bridge (and several others) are classified as non-essential traffic gated behind telemetry.

Fix Action

Workaround

Remove CLAUDE_CODE_ENABLE_TELEMETRY from settings.json:

jq 'del(.env.CLAUDE_CODE_ENABLE_TELEMETRY)' ~/.claude/settings.json | sponge ~/.claude/settings.json
claude -p "ping" --model haiku   # triggers re-fetch
claude remote-control            # now connects

After this, cachedGrowthBookFeatures.tengu_ccr_bridge: true populates and Remote Control connects in ~5 seconds.

Code Example

{ "env": { "CLAUDE_CODE_ENABLE_TELEMETRY": "0" } }

---

jq 'del(.env.CLAUDE_CODE_ENABLE_TELEMETRY)' ~/.claude/settings.json | sponge ~/.claude/settings.json
claude -p "ping" --model haiku   # triggers re-fetch
claude remote-control            # now connects
RAW_BUFFERClick to expand / collapse

Summary

claude remote-control returns Error: Remote Control is not yet enabled for your account for Max 20x users when CLAUDE_CODE_ENABLE_TELEMETRY=0 is set in ~/.claude/settings.json (under the env block). The error message is misleading — the account is eligible; the GrowthBook feature flag fetch is silently blocked because tengu_ccr_bridge (and several others) are classified as non-essential traffic gated behind telemetry.

Affected versions

  • Claude Code 2.1.126 (macOS, Apple Silicon)
  • Plan: Max 20x (organizationType: claude_max, organizationRateLimitTier: default_claude_max_20x)

Steps to reproduce

  1. ~/.claude/settings.json contains:
    { "env": { "CLAUDE_CODE_ENABLE_TELEMETRY": "0" } }
  2. Run claude remote-control
  3. Observe: Error: Remote Control is not yet enabled for your account.

~/.claude.json shows:

  • cachedGrowthBookFeatures: <stale or empty>
  • hasAvailableSubscription: null (despite active Max 20x in oauthAccount)

Workaround

Remove CLAUDE_CODE_ENABLE_TELEMETRY from settings.json:

jq 'del(.env.CLAUDE_CODE_ENABLE_TELEMETRY)' ~/.claude/settings.json | sponge ~/.claude/settings.json
claude -p "ping" --model haiku   # triggers re-fetch
claude remote-control            # now connects

After this, cachedGrowthBookFeatures.tengu_ccr_bridge: true populates and Remote Control connects in ~5 seconds.

What's actually wrong

CLAUDE_CODE_ENABLE_TELEMETRY=0 is documented as disabling telemetry, but in practice it also gates the GrowthBook feature-flag fetch (or at least the tengu_ccr_* family). Users who legitimately want to opt out of telemetry are silently locked out of Remote Control with an error message that points them at billing/support instead of the actual cause.

Asks

  1. Decouple feature-flag fetch from telemetry opt-out. Feature flags drive product gating, not metrics — they should fetch regardless of CLAUDE_CODE_ENABLE_TELEMETRY.
  2. Improve the error. not yet enabled for your account should distinguish "your subscription is ineligible" from "feature-flag cache is empty/stale" from "non-essential traffic disabled by env".
  3. Don't regress tengu_ccr_bridge: true for Max accounts. Several reports already exist (#33119, #34528, #35596, #38488). When the flag flips false server-side after working previously, users have no actionable signal.

Happy to share accountUuid privately if helpful for triaging the server-side flag history.

extent analysis

TL;DR

Remove CLAUDE_CODE_ENABLE_TELEMETRY from settings.json to temporarily workaround the Remote Control issue.

Guidance

  • The CLAUDE_CODE_ENABLE_TELEMETRY=0 setting is causing the GrowthBook feature-flag fetch to be blocked, resulting in the Remote Control is not yet enabled for your account error.
  • To verify the issue, check the cachedGrowthBookFeatures and hasAvailableSubscription values in ~/.claude.json.
  • To mitigate the issue, remove the CLAUDE_CODE_ENABLE_TELEMETRY setting from settings.json and trigger a re-fetch of the feature flags using claude -p "ping" --model haiku.
  • Consider providing the accountUuid privately to help with server-side flag history triaging.

Example

jq 'del(.env.CLAUDE_CODE_ENABLE_TELEMETRY)' ~/.claude/settings.json | sponge ~/.claude/settings.json
claude -p "ping" --model haiku
claude remote-control

Notes

The provided workaround may not be a permanent solution, as it requires removing the telemetry opt-out setting. A more permanent fix would involve decoupling the feature-flag fetch from the telemetry opt-out.

Recommendation

Apply the workaround by removing CLAUDE_CODE_ENABLE_TELEMETRY from settings.json, as it provides a temporary solution to the Remote Control issue.

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

claude-code - 💡(How to fix) Fix [BUG] Remote Control 'not yet enabled' on Max 20x — caused by CLAUDE_CODE_ENABLE_TELEMETRY=0 silently blocking GrowthBook fetch [1 comments, 2 participants]