Add Claude Code plugin and marketplace manifests#165
Open
Naam wants to merge 1 commit into
Open
Conversation
Package the existing skill as an installable Claude Code plugin without moving SKILL.md, so the current clone-based install methods keep working. - .claude-plugin/plugin.json: plugin manifest (name, version 2.9.0, metadata) - .claude-plugin/marketplace.json: single-repo marketplace entry, enabling /plugin marketplace add blader/humanizer && /plugin install humanizer@humanizer - README: add a plugin install section, note the /humanizer:humanizer invocation - AGENTS.md: register the manifests and extend the version-sync contract to plugin.json - SKILL.md + README version history: bump to 2.9.0 (no change to the 33 patterns) Verified with 'claude plugin validate . --strict' and a local install that reports 'Skills (1) humanizer' in the component inventory.
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.
Packages the skill as an installable Claude Code plugin and a single-repo marketplace. You can install it with
/pluginand update it with/plugin updateinstead of cloning by hand.SKILL.mdstays at the repo root, so the existing clone-based install methods in the README still work. I checked that Claude Code discovers a root-levelSKILL.mdas a plugin skill, so it didn't need to move into askills/directory.What's in the PR:
.claude-plugin/plugin.json: the plugin manifest.claude-plugin/marketplace.json: a marketplace entry with source./, so the repo is both the marketplace and the plugin it shipsREADME.md: a new "Plugin (recommended)" install sectionAGENTS.md: adds the two manifests to Key files and extends the version contract to coverplugin.jsonSKILL.mdfrontmatter, the README history, andplugin.json. The 33 patterns are unchanged. This is packaging only.Install:
Then invoke it as
/humanizer:humanizer.How I verified it:
claude plugin validate . --strictpasses for both manifestsSkills (1) humanizerin the component inventory, then uninstalls cleanly