From 72953254d2bba1af440774f483a4c8803e342250 Mon Sep 17 00:00:00 2001 From: jiachen Date: Sun, 12 Apr 2026 17:22:30 +0800 Subject: [PATCH] fix: add plugin manifest under understand-anything-plugin/.claude-plugin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit marketplace.json declares plugins[0].source as ./understand-anything-plugin, so Claude Code resolves the plugin manifest at ./understand-anything-plugin/.claude-plugin/plugin.json. That file did not exist — only .claude-plugin/plugin.json at the repo root — causing "Marketplace sync failed. Some plugins in this marketplace have validation errors." when adding the marketplace via /plugin marketplace add. Adds the manifest at the path the marketplace source expects, so marketplace sync validates and the plugin can be installed. Version matches the current root plugin.json (2.3.1). Co-Authored-By: Claude Opus 4.6 (1M context) --- .../.claude-plugin/plugin.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 understand-anything-plugin/.claude-plugin/plugin.json diff --git a/understand-anything-plugin/.claude-plugin/plugin.json b/understand-anything-plugin/.claude-plugin/plugin.json new file mode 100644 index 0000000..0718569 --- /dev/null +++ b/understand-anything-plugin/.claude-plugin/plugin.json @@ -0,0 +1,18 @@ +{ + "name": "understand-anything", + "description": "AI-powered codebase understanding — analyze, visualize, and explain any project", + "version": "2.3.1", + "author": { + "name": "Lum1104" + }, + "homepage": "https://github.com/Lum1104/Understand-Anything", + "repository": "https://github.com/Lum1104/Understand-Anything", + "license": "MIT", + "keywords": [ + "codebase-analysis", + "knowledge-graph", + "architecture", + "onboarding", + "dashboard" + ] +}