From a037f85bd614c6b7dfb6c22541bb74cf9b2b0d10 Mon Sep 17 00:00:00 2001 From: t Date: Tue, 8 Sep 2026 23:37:20 +0200 Subject: [PATCH] fix(marketplace): switch plugin source to explicit HTTPS url form 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 --- .claude-plugin/marketplace.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 1651986..392d0f8 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -8,8 +8,8 @@ { "name": "plannotator-effective-html", "source": { - "source": "github", - "repo": "plannotator/effective-html" + "source": "url", + "url": "https://github.com/plannotator/effective-html.git" }, "description": "Give standalone HTML artifacts a subject-specific visual direction, then create wireframes, styled mockups, interactive prototypes, plans, diagrams, and general artifacts.", "homepage": "https://github.com/plannotator/effective-html",