feat: add Claude Code plugin + marketplace structure#1
Open
back1ply wants to merge 4 commits into
Open
Conversation
- .claude-plugin/plugin.json — plugin manifest (name, version, author, keywords) - .claude-plugin/marketplace.json — marketplace manifest so users can add this repo as a marketplace - skills/prompt-improver/SKILL.md — skill in proper plugin directory layout Users can now install via: /plugin marketplace add github ndpvt-web/prompt-improver /plugin install prompt-improver
… README - Remove version from plugin.json and marketplace.json so users auto-track latest via git commit SHA instead of being pinned - Rewrite README Installation to use /plugin marketplace add + /plugin install - Update File Structure section to show plugin layout
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 this PR adds
Three files that turn this repo into a proper Claude Code plugin that can also be added as a marketplace:
The root
SKILL.mdis untouched — manual installs keep working.How users install after merge
Add as a marketplace + install:
Or install directly (no marketplace needed):
Then invoke the skill:
Files changed
.claude-plugin/plugin.jsonPlugin manifest with name, version, author, homepage, license, and keywords for discoverability.
.claude-plugin/marketplace.jsonMarketplace manifest pointing
source: "."so this repo serves as its own single-plugin marketplace. Users add it once and can install/update through Claude Code's plugin system.skills/prompt-improver/SKILL.mdIdentical skill logic to root
SKILL.md, but placed in the proper plugin directory so Claude Code auto-discovers it under theprompt-improvernamespace. Reference paths updated to use${CLAUDE_PLUGIN_ROOT}/references/so Claude can locate the methodology files at runtime.References