From 68efae8efaf9455900ddbcd96740e9e327d6e931 Mon Sep 17 00:00:00 2001 From: Ciro Spaciari MacBook Date: Mon, 13 Apr 2026 16:50:39 -0700 Subject: [PATCH] fix(plugin-dev): add missing .claude-plugin/plugin.json manifest The plugin-dev plugin is listed in .claude-plugin/marketplace.json but was the only plugin in the plugins/ directory without a .claude-plugin/plugin.json manifest, which is required for installation from the marketplace. Adds the manifest with name, version, description, and author matching the marketplace.json entry, consistent with all other plugins in this repo. --- plugins/plugin-dev/.claude-plugin/plugin.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 plugins/plugin-dev/.claude-plugin/plugin.json diff --git a/plugins/plugin-dev/.claude-plugin/plugin.json b/plugins/plugin-dev/.claude-plugin/plugin.json new file mode 100644 index 000000000..237c3e51d --- /dev/null +++ b/plugins/plugin-dev/.claude-plugin/plugin.json @@ -0,0 +1,9 @@ +{ + "name": "plugin-dev", + "version": "0.1.0", + "description": "Comprehensive toolkit for developing Claude Code plugins. Includes 7 expert skills covering hooks, MCP integration, commands, agents, and best practices. AI-assisted plugin creation and validation.", + "author": { + "name": "Daisy Hollman", + "email": "daisy@anthropic.com" + } +}