fix(claude): scan skills/ directory to expose all skills#3
Open
mnovelo wants to merge 1 commit into
Open
Conversation
The Claude plugin manifest enumerated only five of the six skills in skills/, omitting firecrawl-research-index. With marketplace source "./" (root), an explicit skills array replaces the default skills/ scan, so the unlisted skill never loads. Codex (./skills/) and Cursor (omitted) already expose all six; this aligns the Claude manifest with them. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NMZYScgPF9se5hX42qB1Z3
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
Switch
.claude-plugin/plugin.json'sskillsfield from an explicit 5-path array to the directory string"./skills/", matching.codex-plugin/plugin.json.Why
skills/contains six skills, but the Claude manifest enumerated only five — omittingfirecrawl-research-index. Because this marketplace entry'ssourceresolves to the marketplace root ("source": "./"), an explicitskillsarray replaces the defaultskills/scan rather than supplementing it, per the plugins reference:So the unlisted skill never loads when the plugin is installed via the marketplace.
The sibling manifests already expose all six:
.codex-plugin/plugin.jsonuses"skills": "./skills/"and.cursor-plugin/plugin.jsonomits the field (default discovery). Only the Claude manifest drifted —firecrawl-research-indexcurrently ships to Codex and Cursor users but not Claude.Effect
skills/load via Claude, includingfirecrawl-research-index.Open question for maintainers
README.mdandAGENTS.mdenumerate only the fivefirecrawl-build-*skills. Iffirecrawl-research-indexis meant to ship, those docs likely want a matching entry. If it was deliberately scoped out of the Claude plugin specifically, say so and I'll switch this to explicitly appending the single path instead — though it already reaches Codex/Cursor users either way.🤖 Generated with Claude Code