From 3f108e8286bc4657476b3a4128c072fbaae8d90c Mon Sep 17 00:00:00 2001 From: Michael Pascoe Date: Fri, 24 Apr 2026 06:31:47 +0000 Subject: [PATCH] fix: use "./" instead of "." as plugin source path Claude Code's plugin marketplace schema rejects "." as a relative source path; it must be "./" to parse as a valid relative directory reference. This one-character fix unblocks marketplace registration. Opened upstream as PR for patchorbit/domscribe. --- .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 293b57c..36f6bdd 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -11,7 +11,7 @@ { "name": "domscribe", "description": "Domscribe is a pixel-to-code development tool that maps running UI elements to their exact source locations, capturing runtime context (props, state, DOM) for handoff to coding agents via MCP.", - "source": ".", + "source": "./", "homepage": "https://github.com/patchorbit/domscribe", "repository": "https://github.com/patchorbit/domscribe", "license": "MIT",