Prechádzať zdrojové kódy

fix: correct marketplace.json schema - author must be object

- Change author from string to object with name and url
- Fixes schema validation error in Claude Code
- Required format: {"name": "...", "url": "..."}
darrenhinde 5 mesiacov pred
rodič
commit
b110f78b21
1 zmenil súbory, kde vykonal 4 pridanie a 1 odobranie
  1. 4 1
      .claude-plugin/marketplace.json

+ 4 - 1
.claude-plugin/marketplace.json

@@ -20,7 +20,10 @@
         "code-review",
         "code-review",
         "documentation"
         "documentation"
       ],
       ],
-      "author": "NextSystems",
+      "author": {
+        "name": "NextSystems",
+        "url": "https://github.com/darrenhinde"
+      },
       "license": "MIT",
       "license": "MIT",
       "repository": "https://github.com/darrenhinde/OpenAgentsControl"
       "repository": "https://github.com/darrenhinde/OpenAgentsControl"
     }
     }