From 782931f1d66039473356cfb72c5a8435239e520b Mon Sep 17 00:00:00 2001 From: Seth Hobson Date: Thu, 15 Jan 2026 20:10:16 -0500 Subject: [PATCH] fix(conductor): add missing category field to plugin.json Add required fields for proper plugin discovery: - Add category: "workflows" (required for marketplace filtering) - Add homepage and repository URLs - Update author to match marketplace.json --- conductor/.claude-plugin/plugin.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/conductor/.claude-plugin/plugin.json b/conductor/.claude-plugin/plugin.json index 8a26dc6..3c35611 100644 --- a/conductor/.claude-plugin/plugin.json +++ b/conductor/.claude-plugin/plugin.json @@ -3,9 +3,11 @@ "version": "0.1.0", "description": "Context-Driven Development plugin that transforms Claude Code into a project management tool. Implements structured workflow: Context → Spec & Plan → Implement with full TDD support, track-based work units, and semantic git reversion.", "author": { - "name": "Claude Agents", - "url": "https://github.com/wshobson/claude-agents" + "name": "Seth Hobson", + "url": "https://github.com/wshobson" }, + "homepage": "https://github.com/wshobson/agents", + "repository": "https://github.com/wshobson/agents", "license": "MIT", "keywords": [ "project-management", @@ -14,5 +16,6 @@ "planning", "specifications", "workflow" - ] + ], + "category": "workflows" }