fix(marketplace): use ./skills/ prefix for skill paths#31
Open
igord7737 wants to merge 1 commit into
Open
Conversation
Skill directories live under ./skills/<category>/<name>/ in this repo, but the marketplace manifest referenced them as ./<category>/<name>/ (missing the skills/ prefix). Result: Claude Code plugin loader reports "Path not found" for every skill in 6 out of 7 plugins, so none of the declared skills are usable. Verified by: - ls ./skills/devsecops/ shows all 6 expected skills exist - After fix: claude plugin uninstall + install + claude doctor → 0 errors - Same pattern applied to all 7 plugins (appsec, devsecops, secsdlc, compliance, incident-response, threatmodel, offsec) — total 33 paths
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
Skill directories in this repo live under
./skills/<category>/<name>/, but.claude-plugin/marketplace.jsonreferences them as./<category>/<name>/(missing theskills/prefix). Claude Code's plugin loader resolves these paths literally, so every skill in 6 of 7 plugins fails to load withPath not found.Root cause
Example:
devsecops-skillsplugin declares```json
"skills": ["./devsecops/secrets-gitleaks", ...]
```
but the directory at that path doesn't exist. Actual location:
./skills/devsecops/secrets-gitleaks/SKILL.md. Same drift applies toappsec,secsdlc,compliance,incident-response,threatmodel, andoffsecplugins.Reproduction on `main` @ 6e25a4b:
Fix
Prefix all 31 skill paths with `./skills/` so they match the on-disk layout. No skill content changes — manifest paths only.
Test plan