claude-code - 💡(How to fix) Fix [FEATURE] Surface plugin install tips from any registered marketplace [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#55920Fetched 2026-05-05 06:02:53
View on GitHub
Comments
0
Participants
1
Timeline
3
Reactions
0
Author
Participants
Timeline (top)
labeled ×2renamed ×1
RAW_BUFFERClick to expand / collapse

Problem

Plugin install tips — the inline banner that suggests /plugin install <name>@<marketplace> based on file patterns or CLI tool usage — only appear to fire for plugins on claude-plugins-official. For example, the tip Claude Code already surfaces today:

Tip: Working with HTML/CSS? Install the frontend-design plugin: /plugin install frontend-design@claude-plugins-official

Plugins from any other registered marketplace, whether added via enterprise managed-settings or by explicit /plugin marketplace add, never surface as tips.

Direction

Let any registered marketplace be tip-eligible. The trust signal already exists: a marketplace is registered either by an enterprise admin (via managedSettings.allowedMarketplaces) or by the user explicitly running /plugin marketplace add. Either way, the operator has already committed to trusting it enough for /plugin install. The gate that blocks tips today is more conservative than the gate that allows installs.

Reproducer

In any environment with a non-official marketplace registered (managed-settings or user-added):

  1. /plugin install <name>@<that-marketplace> succeeds.
  2. Trigger any documented tip condition for that plugin (file pattern match, related CLI tool usage).
  3. No tip appears.
  4. Republish the same plugin under claude-plugins-official and retry — tip appears.

Why it matters

Discovery at scale. Two scenarios where this hurts:

  • Enterprise. Onboarding new engineers in an org with dozens of internal plugins today means each one has to be told the exact install slug; there's no way for the org's own tooling to surface relevant ones at the right moment.
  • Community ecosystem. A plugin author maintaining a public marketplace can ask users to install but can't surface contextual tips. An open-source CLI can already speak the hint protocol, but today the hint only resolves against the official marketplace — every downstream marketplace has to fork the suggestion mechanism or live without it.

In both cases the trigger mechanism already exists in the harness — only the marketplace gate is in the way. The existing per-session and per-plugin show-once limits already handle spam concerns.

Adjacent

  • #36386 — docs for the existing tip mechanism

extent analysis

TL;DR

Modify the plugin install tip mechanism to consider all registered marketplaces, not just claude-plugins-official, to improve plugin discovery.

Guidance

  • Review the current implementation of the plugin install tip mechanism to identify where the marketplace check is performed.
  • Update the logic to include all registered marketplaces, using the existing trust signals from managedSettings.allowedMarketplaces and /plugin marketplace add.
  • Verify that the updated mechanism correctly surfaces tips for plugins from non-official marketplaces.
  • Test the changes with various marketplaces and plugins to ensure the fix works as expected.

Example

No code snippet is provided as the issue does not include specific implementation details.

Notes

The solution may require modifications to the plugin install tip mechanism, which could have unintended consequences. Thorough testing is necessary to ensure the fix does not introduce new issues.

Recommendation

Apply workaround: Modify the plugin install tip mechanism to consider all registered marketplaces, as this will improve plugin discovery and align with the existing trust signals.

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