From e99d6c06d6c3c40e987092e61f30af7bf04bee94 Mon Sep 17 00:00:00 2001 From: Brent Rager Date: Tue, 30 Jun 2026 07:53:26 -0400 Subject: [PATCH] =?UTF-8?q?th-e2cbcd:=20fix=20smooth=20marketplace=20plugi?= =?UTF-8?q?n=20source=20(bare+pluginRoot=20=E2=86=92=20explicit=20./=20pat?= =?UTF-8?q?h)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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/"` entries) and dropped pluginRoot. Plugin itself unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01DXqPyj8SvxyUbfyRPvBA6P --- .changeset/th-marketplace-source-fix.md | 7 +++++++ .claude-plugin/marketplace.json | 5 ++--- 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 .changeset/th-marketplace-source-fix.md diff --git a/.changeset/th-marketplace-source-fix.md b/.changeset/th-marketplace-source-fix.md new file mode 100644 index 00000000..3a1c2829 --- /dev/null +++ b/.changeset/th-marketplace-source-fix.md @@ -0,0 +1,7 @@ +--- +"@smooai/smooth": patch +--- + +fix(smooth marketplace): smooth-agent plugin failed to install ("source type your Claude Code version does not support") + +The marketplace used `metadata.pluginRoot` + a bare `"source": "smooth-agent"`. On Claude Code 2.1.196 that combination is rejected as an unsupported source type. Switched to the canonical explicit relative-path form `"./claude-plugins/smooth-agent"` (matching the official marketplace's working `"./plugins/"` entries) and dropped `pluginRoot`. No change to the plugin itself. diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 050ad40d..9d7cf2d3 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -6,13 +6,12 @@ "email": "brent@smoo.ai" }, "metadata": { - "description": "SmooAI team Claude Code plugins — Big Smooth orchestration (th claude), agent comms (th-mail), and pearls work tracking.", - "pluginRoot": "./claude-plugins" + "description": "SmooAI team Claude Code plugins — Big Smooth orchestration (th claude), agent comms (th-mail), and pearls work tracking." }, "plugins": [ { "name": "smooth-agent", - "source": "smooth-agent", + "source": "./claude-plugins/smooth-agent", "description": "Run a Big Smooth that drives Claude Code worker sessions over tmux (rate-limit-resilient), coordinate agents over th-mail, and track work in pearls. Provides the /smooth command.", "version": "0.1.0", "category": "orchestration",