From ace2c4665ab7669687e8e2b2cdcf39905cf9b304 Mon Sep 17 00:00:00 2001 From: Johan Pretorius Date: Mon, 26 Jan 2026 12:06:16 +0200 Subject: [PATCH] Fix marketplace source path to reference root directory The marketplace.json referenced "./plugin" which doesn't exist. The plugin files (skills, agents, commands) are in the repository root, so the source should be "./" instead. This fixes plugin installation via `claude plugin install stackshift@jschulte`. Co-Authored-By: Claude Opus 4.5 --- .claude-plugin/marketplace.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 93e054f..cdebfd8 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -11,7 +11,7 @@ { "name": "stackshift", "version": "1.0.0", - "source": "./plugin", + "source": "./", "description": "Reverse engineering toolkit - shift gears between tech stacks or manage existing code with GitHub Spec Kit. Start in reverse (engineering), shift through 6 gears, cruise into spec-driven development. Dual workflow: Greenfield (extract business logic) or Brownfield (manage existing). Interactive skills with auto-activation." } ]