Convert to Claude Code plugin marketplace#1
Open
asachs01 wants to merge 1 commit into
Open
Conversation
Restructures the repo as an installable plugin marketplace alongside the existing npm CLI distribution. Each VC persona is now its own plugin under plugins/<name>/ with a proper SKILL.md, discoverable via .claude-plugin/marketplace.json. - Add .claude-plugin/marketplace.json listing all 28 plugins - Generate plugins/<name>/.claude-plugin/plugin.json + skills/<name>/SKILL.md for every entry in cli/lib/registry.js - Add scripts/build-marketplace.js as the source-of-truth generator (run after editing skills/ or registry.js) - Document /plugin marketplace add workflow in README - Update CONTRIBUTING with marketplace regeneration step Existing skills/*.md files and the npm CLI are unchanged.
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.
Summary
.claude-plugin/marketplace.jsonso this repo can be installed via/plugin marketplace add xiapeli/vc-skillsplugins/<name>/(properplugin.json+skills/<name>/SKILL.mdwith YAML frontmatter) — 28 plugins totalscripts/build-marketplace.jsas the source-of-truth generator, driven by the existingcli/lib/registry.jsso the npm CLI and the marketplace cannot driftExisting
skills/*.mdfiles and thevc-skillsnpm CLI are unchanged — this is purely additive.Why
"Claude skills" now has a specific spec (SKILL.md + frontmatter, discoverable via plugin marketplaces). Founders using Claude Code can install a single VC with
/plugin install sequoia@vc-skillsand have the persona auto-activate, instead of pasting prompts.Test plan
node scripts/build-marketplace.jsproduces 28 plugins + marketplace.json with no diff on a clean tree/plugin marketplace add xiapeli/vc-skillsthen/plugin install sequoia@vc-skillsactivates the Sequoia persona in Claude Codenpx vc-skills sequoiastill works (CLI untouched)