Fix plugin source path so install works on Claude Code 2.1.x#2
Open
goalkeepr wants to merge 1 commit intoserpapi:mainfrom
Open
Fix plugin source path so install works on Claude Code 2.1.x#2goalkeepr wants to merge 1 commit intoserpapi:mainfrom
goalkeepr wants to merge 1 commit intoserpapi:mainfrom
Conversation
Bare "." in the plugin source field causes Claude Code 2.1.x to reject the install with "This plugin uses a source type your Claude Code version does not support." The official marketplace schema documents relative same-repo plugin paths as starting with "./", and Claude Code's installer requires that exact form. Verified locally on Claude Code 2.1.121: - claude plugin validate ~/source/serpapi-claude-plugin → passes - claude plugin install serpapi@serpapi-plugins → succeeds - claude plugin list → shows serpapi@serpapi-plugins enabled - bash test.sh → 13 passed, 0 failed
There was a problem hiding this comment.
Pull request overview
Updates the Claude Code plugin marketplace definition so the plugin can be installed on Claude Code 2.1.x, aligning the source field with the documented same-repo relative path format.
Changes:
- Change plugin
sourcefrom"."to"./"in the marketplace entry.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
The plugin entry's
sourcefield was set to bare\".\", which causes Claude Code 2.1.x to silently fail or report:The official marketplace docs document the same-repo relative path form as
\"./\"(with trailing slash), and Claude Code's installer requires that exact form. Updating to\"./\"is a one-character fix that does not change semantics.Test plan
Verified locally on macOS with Claude Code
2.1.121(native install):claude plugin validate ~/source/serpapi-claude-plugin→ ✔ Validation passedclaude plugin marketplace add ~/source/serpapi-claude-plugin→ ✔ Successfully addedclaude plugin install serpapi@serpapi-plugins→ ✔ Successfully installed pluginclaude plugin listshowsserpapi@serpapi-pluginsenabledbash test.sh→ 13 passed, 0 failedBefore the fix, the install step failed with the source-type error above.
🤖 Generated with Claude Code