From d0b28b38f77998384a57e2cca873e0356df0151b Mon Sep 17 00:00:00 2001 From: Joel Teply Date: Wed, 12 Aug 2026 20:09:57 -0500 Subject: [PATCH] fix(claude): marketplace source type is 'directory', not 'local' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .claude/settings.json declared extraKnownMarketplaces.continuum-local-tools.source.source = "local", which is not a valid marketplace source type — Claude Code reported 'Invalid input' and the memory-bridge plugin's marketplace would not resolve. 'directory' is the type for a filesystem-path marketplace; path (tools/plugins) is unchanged. Committing rather than fixing in the working tree: this file is TRACKED, so every git checkout / reset --hard reverts it. I fixed it once earlier today and my own branch-hopping (rescuing #2056 into five PRs) silently undid it — the error came back looking fresh. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01Q4NU4VNiELPQfBpCacDZGc --- .claude/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/settings.json b/.claude/settings.json index 2df60b30a4..b12083c06f 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -2,7 +2,7 @@ "extraKnownMarketplaces": { "continuum-local-tools": { "source": { - "source": "local", + "source": "directory", "path": "tools/plugins" } }