fix(marketplace): switch plugin source to explicit HTTPS url form - #26
Open
yotamleo wants to merge 1 commit into
Open
fix(marketplace): switch plugin source to explicit HTTPS url form#26yotamleo wants to merge 1 commit into
yotamleo wants to merge 1 commit into
Conversation
The Claude Code plugin entry pinned plannotator-effective-html via the github owner/repo shorthand source, which clones over SSH. A fresh machine with no github.com entry in ~/.ssh/known_hosts and no SSH key configured fails host-key verification and cannot install the plugin. Switch to the explicit HTTPS url source form so installs work with no SSH setup required. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
|
Someone is attempting to deploy a commit to the Effective HTML Team on Vercel. A member of the Team first needs to authorize it. |
|
It seems that the maintainer has not been online these days. |
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.
Symptom
Installing this plugin's Claude Code marketplace entry on a fresh machine with no SSH key configured for
github.com(no~/.ssh/known_hostsentry, no key) fails with an SSH host-key verification error.Impact
The
plannotator-effective-htmlplugin entry in.claude-plugin/marketplace.jsonuses thegithubowner/repo shorthand source:Claude Code resolves this shorthand by cloning over
git@github.com:...(SSH). Any consumer without a pre-configured SSH key/known-hosts entry for GitHub — a fresh CI runner, a new dev machine, a sandboxed agent host — cannot install the plugin.Repro
On a host with no
~/.ssh/known_hostsentry forgithub.comand no SSH key loaded, add this marketplace and runclaude plugin install plannotator-effective-html@effective-html. The clone fails at SSH host-key verification.Evidence
Upstream HEAD at the time of this PR:
d95debbaef15af1d201fc6c10c77cf92b524a0d6,.claude-plugin/marketplace.jsonline 10-13.Fix
Switch the source to the explicit HTTPS
urlform, which clones over HTTPS and needs no SSH setup:No other files reference the
github-shorthand source (checked repo-wide); the.codex-plugin/plugin.jsonmanifest is a separate, unrelated format with no such field.