From 8e7c0615e655ce20a6e3dd4fbf59bc68bda5b5d4 Mon Sep 17 00:00:00 2001 From: Julien Tavernier Date: Mon, 5 Jan 2026 17:10:46 +0400 Subject: [PATCH] fix(plugin-dev): add missing .claude-plugin/plugin.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The plugin-dev plugin was missing its required plugin.json manifest file, causing the plugin to fail loading. This adds the missing configuration file following the same format as other official plugins. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- plugins/plugin-dev/.claude-plugin/plugin.json | 8 ++++++++ 1 file changed, 8 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 0000000..19cd871 --- /dev/null +++ b/plugins/plugin-dev/.claude-plugin/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "plugin-dev", + "description": "Plugin development toolkit with skills for creating agents, commands, hooks, MCP integrations, and comprehensive plugin structure guidance", + "author": { + "name": "Anthropic", + "email": "support@anthropic.com" + } +}