From 202fa8e261fc8df41891a549412e5a020d73c706 Mon Sep 17 00:00:00 2001 From: Daniel Chepenko Date: Tue, 17 Mar 2026 10:26:34 -0300 Subject: [PATCH] Fix conflicting manifests error by setting strict: true The plugin loader reported a conflict because both the marketplace entry (skills array) and the plugin source directory specified components. Setting strict: true tells the loader to use only the marketplace-declared components, resolving the ambiguity. Co-Authored-By: Claude Opus 4.6 (1M context) --- .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 8abf218..7cb299e 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -15,7 +15,7 @@ "version": "1.0.3", "description": "Official Extruct AI skill bundle for semantic search, lookalike search, Deep Search, table operations, enrichment, and contact-finding workflows.", "source": "./", - "strict": false, + "strict": true, "skills": [ "./skills/extruct-api" ]