From 553a96bfba785a3c0e45ead9162566a7c6bbf613 Mon Sep 17 00:00:00 2001 From: Kyle A Bradshaw <109608707+kabradshaw1@users.noreply.github.com> Date: Wed, 18 Mar 2026 19:46:29 -0600 Subject: [PATCH] Updated Author Field in .cluade-plugin/plugin.json It appears they may have changed the standard for defining the author in .claude-plugin/plugin.json. When I attempted to installed this plugin I got an error say that the author should be an object. --- .claude-plugin/plugin.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 3dd59a4..06f117c 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -3,7 +3,9 @@ "displayName": "custom-plugin-flutter", "version": "2.0.0", "description": "Industrial-grade Flutter development plugin with 8 specialized agents and 12 production-ready skills covering UI, state management, backend integration, database design, performance optimization, testing, DevOps, and native platform integration. 15,500+ lines of expert content, 200+ code examples, 25+ projects.", - "author": "Custom Plugin Development Team", + "author": { + "name": "Custom Plugin Development Team" + }, "license": "SEE LICENSE IN LICENSE", "repository": "https://github.com/pluginagentmarketplace/custom-plugin-flutter.git", "eqhm_enabled": true, @@ -216,4 +218,4 @@ "2024-2025" ] } -} \ No newline at end of file +}