Add displayName to all marketplace plugin entries#247
Merged
Conversation
Render human-readable plugin names in the plugin directory instead of the
slug-humanize fallback ("Brand voice", "Cockroachdb", "Sp global").
Adds displayName to each of the 49 entries in marketplace.json.
Partner plugins can still override via their own plugin.json — the consumer
prefers a plugin's manifest displayName and falls back to the marketplace
entry value.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
mattpic-ant
previously approved these changes
May 21, 2026
This was referenced May 21, 2026
The cockroachdb plugin has a cached failing policy verdict (its hooks/hooks.json PostToolUse hook fires on every Write|Edit|MultiEdit with no project-relevance gate). Adding displayName put its entry in the scan's changed set, so the cached failure blocked this PR. Leaving the cockroachdb entry byte-identical to main keeps it out of the changed set so the gate passes. cockroachdb still needs its hook fixed upstream before it can carry a displayName. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
mattpic-ant
approved these changes
May 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a
displayNameto every entry in.claude-plugin/marketplace.json(49 plugins).Why
The plugin directory (claude.ai / Cowork) renders a human-readable label for each plugin. With no
displayName, it falls back to humanizing the slug, which produces awkward labels — especially for multi-word names and brands:displayNamebrand-voicecommon-roomcockroachdbvanta-mcp-pluginsp-globalThis sets proper Title Case for the Anthropic-authored plugins and brand-correct names for the partner-built ones.
Notes
plugin.jsondisplayNameand falls back to this marketplace-entry value — so partner plugins can still override the label from their source repo without a change here.