fix: expand marketplace to list individual skills for proper discovery#17
Open
christso wants to merge 2 commits intomuratcankoylan:mainfrom
Open
fix: expand marketplace to list individual skills for proper discovery#17christso wants to merge 2 commits intomuratcankoylan:mainfrom
christso wants to merge 2 commits intomuratcankoylan:mainfrom
Conversation
The original marketplace.json configured a single plugin entry pointing to the ./skills directory. Claude Code's plugin system expects individual skill entries with their own source paths to properly discover and expose them. This commit expands the marketplace.json to list all 10 skills as individual plugin entries (context-fundamentals, context-optimization, context-compression, context-degradation, multi-agent-patterns, memory-systems, evaluation, advanced-evaluation, project-development, tool-design) along with book-sft-pipeline. Each skill now has: - Correct source path pointing to its directory - Individual description from its SKILL.md - Relevant keywords for discoverability This allows users to properly discover and install individual skills from the context-engineering-marketplace.
Owner
|
Thanks for flagging this @christso . You identified that the marketplace discovery was broken due to the single-entry configuration. I've implemented a comprehensive fix in
The fix is now merged into |
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.
Problem
The marketplace.json configuration lists all skills under a single plugin entry pointing to the
./skillsdirectory. Claude Code's plugin system cannot discover individual skills nested in subdirectories without explicit entries for each one.As a result, users adding the marketplace see no available skills to install.
Solution
This PR expands marketplace.json to list all 10 context engineering skills as individual plugin entries, each with:
./skills/context-fundamentals)Also updates README.md with corrected installation instructions.
Skills Now Available
Testing
Users can now properly discover and install skills:
Related
Closes #18