From 8860c02afc74265592e96f34c41a352585a81c1c Mon Sep 17 00:00:00 2001 From: lmiranda Date: Tue, 9 Dec 2025 13:56:51 -0500 Subject: [PATCH] fix: correct marketplace.json schema MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add required owner field with name and email - Change source from object to string path - Remove unsupported fields: displayName, featured, version, author 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../.claude-plugin/marketplace.json | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.claude-plugins/projman-marketplace/.claude-plugin/marketplace.json b/.claude-plugins/projman-marketplace/.claude-plugin/marketplace.json index fa88c2b..2e02660 100644 --- a/.claude-plugins/projman-marketplace/.claude-plugin/marketplace.json +++ b/.claude-plugins/projman-marketplace/.claude-plugin/marketplace.json @@ -1,21 +1,15 @@ { "name": "projman-marketplace", - "version": "1.0.0", - "displayName": "Projman Marketplace", - "description": "Marketplace for Projman project management plugins", - "author": "Bandit Labs", + "owner": { + "name": "Bandit Labs", + "email": "dev@banditlabs.io" + }, "plugins": [ { "name": "projman", "version": "0.1.0", - "displayName": "Projman - Project Management", "description": "Sprint planning and project management with Gitea and Wiki.js integration", - "source": { - "type": "local", - "path": "../../projman" - }, - "tags": ["project-management", "sprint-planning", "gitea", "wikijs"], - "featured": true + "source": "../../projman" } ] }