From bbf5e407de834f91ae52402fb01eadf0f5296ac4 Mon Sep 17 00:00:00 2001 From: NguyenDuong Date: Sun, 22 Mar 2026 21:03:52 +0700 Subject: [PATCH] Fix marketplace.json schema to match Claude Code expected format Add required top-level `name`, `owner`, and `metadata` fields. Change plugin `source` from `path` key to `./` string format. Co-Authored-By: Claude Sonnet 4.6 --- .claude-plugin/marketplace.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 505677a..54059aa 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -1,10 +1,19 @@ { + "name": "specforge", + "owner": { + "name": "Nguyen Duong" + }, + "metadata": { + "description": "Spec-driven development toolkit for AI coding agents. Provides structured templates, BA workflow skills, slash commands, and agents that turn requirements into sprint-ready work.", + "version": "1.0.0" + }, "plugins": [ { "name": "specforge", + "source": "./", "description": "Spec-driven development toolkit for AI coding agents. Provides structured templates, BA workflow skills, slash commands, and agents that turn requirements into sprint-ready work.", "version": "1.0.0", - "path": ".", + "category": "development", "keywords": [ "spec", "requirements", @@ -16,4 +25,4 @@ ] } ] -} \ No newline at end of file +}