claude-code - 💡(How to fix) Fix [FEATURE] Separate setting to disable promotional/referral notices without losing tool tips [3 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#45009Fetched 2026-04-09 08:15:30
View on GitHub
Comments
3
Participants
2
Timeline
5
Reactions
1
Author
Timeline (top)
commented ×3labeled ×2
RAW_BUFFERClick to expand / collapse

Preflight Checklist

  • I have searched existing requests and this feature hasn't been requested yet
  • This is a single feature request (not multiple features)

Problem Statement

The Claude Code spinner tips channel mixes two unrelated kinds of content:

  1. Tool tips — genuinely useful hints about features, keyboard shortcuts, and workflows. Especially valuable for new users still learning the tool.
  2. Promotional content — referral offers (e.g. the "earn $10 by referring people to Claude" notice), marketing messages, and similar.

The only way to disable promotional content today is spinnerTipsEnabled: false, which also kills all the actual tool tips. That forces users into an all-or-nothing choice: tolerate marketing or give up the learning aid.

For users who are still ramping up on Claude Code, losing tool tips is a real cost. For users who don't want marketing content in their terminal, there's no other option.

Proposed Solution

Request

Please add a separate setting to disable promotional spinner content while keeping educational tips. Something like:

{ "spinnerTipsEnabled": true, "spinnerPromotionsEnabled": false }

Or a category-based filter:

{ "spinnerTipCategories": { "tips": true, "promotions": false, "announcements": false } }

Either approach would let users keep the genuinely useful guidance without being shown referral programs, surveys, or other marketing in the same channel.

A one-line setting addition would resolve this completely without affecting users who are happy with the current behavior.

Alternative Solutions

No response

Priority

Critical - Blocking my work

Feature Category

CLI commands and flags

Use Case Example

No response

Additional Context

Why this matters

  • Promotional content in a developer tool's UI feels intrusive, especially when there's no granular opt-out.
  • New users benefit most from tool tips and are also the most likely to be annoyed by promotional content they didn't sign up for.
  • Bundling marketing with help content erodes trust in all spinner messages — users start assuming any spinner text might be an ad.

extent analysis

TL;DR

Add a separate setting to disable promotional spinner content while keeping educational tips, such as spinnerPromotionsEnabled or a category-based filter like spinnerTipCategories.

Guidance

  • Introduce a new configuration option to distinguish between tool tips and promotional content, allowing users to opt-out of the latter without losing the former.
  • Consider implementing a category-based filter to provide more granular control over the types of content displayed in the spinner tips channel.
  • Evaluate the impact of promotional content on user trust and experience, and weigh the benefits of providing a more tailored experience against the potential loss of marketing opportunities.
  • Review existing settings and configuration options to ensure a consistent and intuitive user experience.

Example

{
  "spinnerTipsEnabled": true,
  "spinnerPromotionsEnabled": false
}

or

{
  "spinnerTipCategories": {
    "tips": true,
    "promotions": false,
    "announcements": false
  }
}

Notes

The proposed solution aims to address the issue by providing a more granular control over the content displayed in the spinner tips channel. However, the implementation details and potential implications on the user experience and marketing strategies should be carefully considered.

Recommendation

Apply workaround by introducing a separate setting to disable promotional spinner content, as it provides a more tailored experience for users and addresses the concerns around trust and intrusive marketing.

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