Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/th-marketplace-source-fix.md
Original file line number Diff line number Diff line change
@@ -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/<name>"` entries) and dropped `pluginRoot`. No change to the plugin itself.
5 changes: 2 additions & 3 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading