feat(plugin): Claude Code plugin marketplace install (/plugin install) - #68
Merged
Conversation
Adds .claude-plugin/marketplace.json + .claude-plugin/plugin.json so users can install SkillFinder as a Claude Code plugin in two commands: /plugin marketplace add yya007/SkillFinder /plugin install skill-finder@skillfinder The repo is both the marketplace and the (single-skill, root SKILL.md) plugin via source "./". README install section reworked to lead with the Claude Code plugin flow and keep the skills-directory install for Codex/OpenClaw; finish-setup now lists the pip deps explicitly so it's path-independent for plugin installs. Refreshed the root plugin.json (npm/skills.sh path): version 0.1.0 -> 0.1.2, 33,000+ -> 42,000+. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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
Makes SkillFinder installable as a Claude Code plugin in two commands, and reworks the README install accordingly.
.claude-plugin/marketplace.json— the repo is its own marketplace (name: skillfinder) listing one plugin (skill-finder,source: "./")..claude-plugin/plugin.json— the plugin manifest (name/version/description/author/license). The single rootSKILL.mdis auto-discovered as the plugin's skill (per the Claude Code single-skill-at-root convention)./pluginflow; Codex/OpenClaw keep the skills-directory install (npx skills addornpm i -g+ copy). Finish-setup lists the pip deps explicitly (numpy faiss-cpu requests pyyaml) so it's path-independent for plugin installs (which land in the plugin cache).plugin.json(the npm /skills.shpath) refreshed: version0.1.0 → 0.1.2, "33,000+" → "42,000+".Schema confirmed against the official Claude Code plugin/marketplace docs.
Notes
/plugin installcopies files but does not run setup, so the README documents the post-installpip install …+ollama pull …step../), so a plugin install includes the committeddata/index (~94 MB) — heavier than the trimmed npm package, but self-contained and works offline..claude-plugin/is not shipped in the npm package (fileslist unchanged); the two install paths (npm/skills-dir vs Claude Code plugin) coexist.Verification
pytest579 passed;ruffclean..claude-plugin/is trackable (not caught by the.claude/gitignore).Risk & rollback
Low — additive manifests + docs; no runtime/index/test change. Rollback = revert.
🤖 Generated with Claude Code