From c677994f52a13979287bfe291a110d7a444a09d7 Mon Sep 17 00:00:00 2001 From: Brian Madison Date: Thu, 26 Mar 2026 19:36:56 -0500 Subject: [PATCH] refactor: consolidate plugin.json metadata into marketplace.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Merge license, homepage, repository, keywords, and author from plugin.json into marketplace.json and remove the redundant file. The npx skills installer only reads marketplace.json for skill discovery — plugin.json contributed no functional value. --- .claude-plugin/marketplace.json | 11 +++++++++++ .claude-plugin/plugin.json | 12 ------------ 2 files changed, 11 insertions(+), 12 deletions(-) delete mode 100644 .claude-plugin/plugin.json diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 3eebc7799..6f4f0e0c0 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -3,12 +3,20 @@ "owner": { "name": "Brian (BMad) Madison" }, + "description": "Breakthrough Method of Agile AI-driven Development — a full-lifecycle framework with agents and workflows for analysis, planning, architecture, and implementation.", + "license": "MIT", + "homepage": "https://github.com/bmad-code-org/BMAD-METHOD", + "repository": "https://github.com/bmad-code-org/BMAD-METHOD", + "keywords": ["bmad", "agile", "ai", "orchestrator", "development", "methodology", "agents"], "plugins": [ { "name": "bmad-pro-skills", "source": "./", "description": "Next level skills for power users — advanced prompting techniques, agent management, and more.", "version": "6.3.0", + "author": { + "name": "Brian (BMad) Madison" + }, "skills": [ "./src/core-skills/bmad-help", "./src/core-skills/bmad-init", @@ -29,6 +37,9 @@ "source": "./", "description": "Full-lifecycle AI development framework — agents and workflows for product analysis, planning, architecture, and implementation.", "version": "6.3.0", + "author": { + "name": "Brian (BMad) Madison" + }, "skills": [ "./src/bmm-skills/1-analysis/bmad-product-brief", "./src/bmm-skills/1-analysis/bmad-agent-analyst", diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json deleted file mode 100644 index 8c0adab25..000000000 --- a/.claude-plugin/plugin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "bmad-method", - "version": "6.2.2", - "description": "Breakthrough Method of Agile AI-driven Development — a full-lifecycle framework with agents and workflows for analysis, planning, architecture, and implementation. The core BMad Method.", - "author": { - "name": "Brian (BMad) Madison" - }, - "license": "MIT", - "homepage": "https://github.com/bmad-code-org/BMAD-METHOD", - "repository": "https://github.com/bmad-code-org/BMAD-METHOD", - "keywords": ["bmad", "agile", "ai", "orchestrator", "development", "methodology", "agents"] -}