Преглед изворни кода

fix: correct plugin schema and improve descriptions

Schema Fixes:
- Fix plugin.json: author must be object (not string)
- Remove unsupported fields: tags, compatibility
- Fix marketplace.json: update owner to darrenhinde
- Remove tags from plugin entry (not supported in schema)

Description Improvements (reviewed by CodeReviewer):
- Marketplace: Focus on workflow automation benefits
- Plugin: Emphasize shipping faster with AI-powered workflows
- Highlight context-aware agents and cross-IDE compatibility
- Use outcome-oriented language vs technical jargon

Changes:
- plugin.json: author string → object, removed tags/compatibility
- marketplace.json: improved descriptions, updated owner
- All schema validation errors resolved

Fixes Claude Code validation errors:
- 'author: expected object, received string'
- 'Unrecognized keys: tags, compatibility'
darrenhinde пре 5 месеци
родитељ
комит
d5be7766e1
2 измењених фајлова са 9 додато и 26 уклоњено
  1. 3 12
      .claude-plugin/marketplace.json
  2. 6 14
      claude-plugin/.claude-plugin/plugin.json

+ 3 - 12
.claude-plugin/marketplace.json

@@ -1,25 +1,16 @@
 {
   "name": "oac-marketplace",
-  "description": "OpenAgents Control - Multi-agent orchestration and automation plugins",
+  "description": "AI-powered development workflow automation - code review, testing, documentation, and task management for Claude Code",
   "owner": {
-    "name": "NextSystems",
+    "name": "darrenhinde",
     "url": "https://github.com/darrenhinde/OpenAgentsControl"
   },
   "plugins": [
     {
       "name": "oac",
       "source": "./claude-plugin",
-      "description": "Multi-agent orchestration and automation for Claude Code. Provides intelligent code review, testing, documentation, and task management capabilities.",
+      "description": "Ship faster with AI-powered development workflows. Automates code review, test generation, documentation, and task breakdown. Context-aware agents understand your codebase and enforce your team's standards. Works seamlessly with OpenCode, Cursor, and Windsurf.",
       "version": "1.0.0",
-      "tags": [
-        "agents",
-        "automation",
-        "orchestration",
-        "development",
-        "testing",
-        "code-review",
-        "documentation"
-      ],
       "author": {
         "name": "darrenhinde",
         "url": "https://github.com/darrenhinde"

+ 6 - 14
claude-plugin/.claude-plugin/plugin.json

@@ -1,19 +1,11 @@
 {
   "name": "oac",
-  "description": "OpenAgents Control - Multi-agent orchestration and automation for Claude Code",
+  "description": "AI development workflow automation for Claude Code - intelligent code review, TDD test generation, automated documentation, and smart task breakdown",
   "version": "1.0.0",
-  "author": "darrenhinde",
+  "author": {
+    "name": "darrenhinde",
+    "url": "https://github.com/darrenhinde"
+  },
   "license": "MIT",
-  "repository": "https://github.com/darrenhinde/OpenAgentsControl",
-  "tags": [
-    "agents",
-    "automation",
-    "orchestration",
-    "development",
-    "testing",
-    "code-review"
-  ],
-  "compatibility": {
-    "claude": ">=1.0.0"
-  }
+  "repository": "https://github.com/darrenhinde/OpenAgentsControl"
 }