fix: smooth-agent plugin install (explicit ./ source, drop pluginRoot)#118
Merged
Conversation
…plicit ./ path) smooth-agent failed to install with "source type your Claude Code version does not support" on Claude Code 2.1.196. The marketplace used metadata.pluginRoot + a bare `"source": "smooth-agent"`; that combo isn't accepted. Switched to the canonical explicit relative-path form `"./claude-plugins/smooth-agent"` (matches the official marketplace's working `"./plugins/<name>"` entries) and dropped pluginRoot. Plugin itself unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01DXqPyj8SvxyUbfyRPvBA6P
🦋 Changeset detectedLatest commit: e99d6c0 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
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
/plugin install smooth-agent@smoothfails with "This plugin uses a source type your Claude Code version does not support" (Claude Code 2.1.196).Root cause:
marketplace.jsonusedmetadata.pluginRoot: "./claude-plugins"+ a bare"source": "smooth-agent". That combination is rejected. The known-working official marketplace (installed on this machine, same CC version) uses explicit"./plugins/<name>"relative paths with nopluginRoot.Fix
"source": "smooth-agent"→"source": "./claude-plugins/smooth-agent"(explicit./-prefixed relative path)metadata.pluginRootManifest validated; source path resolves to the plugin's
.claude-plugin/plugin.json. Plugin contents unchanged.Closes pearl th-e2cbcd.
🤖 Generated with Claude Code