From 2d9cc5c336600b99eae0459516c30bc118ffa8d5 Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Fri, 27 Feb 2026 03:12:08 -0800 Subject: [PATCH] fix: restructure plugin manifest for Cowork marketplace compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add $schema to marketplace.json (matches official Anthropic format) - Add strict: false to marketplace entry so marketplace is authority - Remove component declarations (agents, skills) from plugin.json to avoid "conflicting manifests" error — auto-discovery handles these - Add version, author email to marketplace plugin entry - Passes `claude plugin validate .` with no warnings --- .claude-plugin/marketplace.json | 11 ++++++++--- .claude-plugin/plugin.json | 17 ----------------- 2 files changed, 8 insertions(+), 20 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 7a5763fa..38f8fa95 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -1,5 +1,7 @@ { + "$schema": "https://anthropic.com/claude-code/marketplace.schema.json", "name": "everything-claude-code", + "description": "Battle-tested Claude Code configurations from an Anthropic hackathon winner — agents, skills, hooks, commands, and rules evolved over 10+ months of intensive daily use", "owner": { "name": "Affaan Mustafa", "email": "me@affaanmustafa.com" @@ -11,9 +13,11 @@ { "name": "everything-claude-code", "source": "./", - "description": "Complete collection of agents, skills, hooks, commands, and rules evolved over 10+ months of intensive daily use", + "description": "The most comprehensive Claude Code plugin — 13+ agents, 48+ skills, 32+ commands, and production-ready hooks for TDD, security scanning, code review, and continuous learning", + "version": "1.6.0", "author": { - "name": "Affaan Mustafa" + "name": "Affaan Mustafa", + "email": "me@affaanmustafa.com" }, "homepage": "https://github.com/affaan-m/everything-claude-code", "repository": "https://github.com/affaan-m/everything-claude-code", @@ -38,7 +42,8 @@ "code-review", "security", "best-practices" - ] + ], + "strict": false } ] } diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index a2242ef6..440e25ac 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -21,22 +21,5 @@ "workflow", "automation", "best-practices" - ], - "skills": ["./skills/", "./commands/"], - "agents": [ - "./agents/architect.md", - "./agents/build-error-resolver.md", - "./agents/chief-of-staff.md", - "./agents/code-reviewer.md", - "./agents/database-reviewer.md", - "./agents/doc-updater.md", - "./agents/e2e-runner.md", - "./agents/go-build-resolver.md", - "./agents/go-reviewer.md", - "./agents/planner.md", - "./agents/python-reviewer.md", - "./agents/refactor-cleaner.md", - "./agents/security-reviewer.md", - "./agents/tdd-guide.md" ] }