From 598ea85e7f7f9827d61c795512bba32ebc49fd39 Mon Sep 17 00:00:00 2001 From: Seth Hobson Date: Thu, 5 Feb 2026 17:41:00 -0500 Subject: [PATCH] fix(agent-teams): simplify plugin.json and marketplace entry to match conductor patterns Strip plugin.json to minimal fields (name, version, description, author, license). Remove commands/agents/skills arrays, keywords, repository, and strict from marketplace entry. --- .claude-plugin/marketplace.json | 42 ++----------------- .../agent-teams/.claude-plugin/plugin.json | 15 +------ 2 files changed, 6 insertions(+), 51 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 8efdb0d..764ca94 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -1931,50 +1931,16 @@ }, { "name": "agent-teams", - "source": "./plugins/agent-teams", "description": "Orchestrate multi-agent teams for parallel code review, hypothesis-driven debugging, and coordinated feature development using Claude Code's Agent Teams", "version": "1.0.1", "author": { "name": "Seth Hobson", - "url": "https://github.com/wshobson" + "email": "seth@major7apps.com" }, - "homepage": "https://github.com/wshobson/agents", - "repository": "https://github.com/wshobson/agents", - "license": "MIT", - "keywords": [ - "agent-teams", - "multi-agent", - "coordination", - "parallel-development", - "code-review", - "debugging", - "orchestration" - ], + "source": "./plugins/agent-teams", "category": "workflows", - "strict": false, - "commands": [ - "./commands/team-spawn.md", - "./commands/team-status.md", - "./commands/team-shutdown.md", - "./commands/team-review.md", - "./commands/team-debug.md", - "./commands/team-feature.md", - "./commands/team-delegate.md" - ], - "agents": [ - "./agents/team-lead.md", - "./agents/team-reviewer.md", - "./agents/team-debugger.md", - "./agents/team-implementer.md" - ], - "skills": [ - "./skills/team-composition-patterns", - "./skills/task-coordination-strategies", - "./skills/parallel-debugging", - "./skills/multi-reviewer-patterns", - "./skills/parallel-feature-development", - "./skills/team-communication-protocols" - ] + "homepage": "https://github.com/wshobson/agents", + "license": "MIT" } ] } diff --git a/plugins/agent-teams/.claude-plugin/plugin.json b/plugins/agent-teams/.claude-plugin/plugin.json index 5f71101..7cef61e 100644 --- a/plugins/agent-teams/.claude-plugin/plugin.json +++ b/plugins/agent-teams/.claude-plugin/plugin.json @@ -4,18 +4,7 @@ "description": "Orchestrate multi-agent teams for parallel code review, hypothesis-driven debugging, and coordinated feature development using Claude Code's Agent Teams", "author": { "name": "Seth Hobson", - "url": "https://github.com/wshobson" + "email": "seth@major7apps.com" }, - "license": "MIT", - "homepage": "https://github.com/wshobson/agents", - "repository": "https://github.com/wshobson/agents", - "keywords": [ - "agent-teams", - "multi-agent", - "coordination", - "parallel-development", - "code-review", - "debugging", - "orchestration" - ] + "license": "MIT" }