From 366beecb7365d257efe33b86cfa433ed241b17ff Mon Sep 17 00:00:00 2001 From: Addy Osmani Date: Mon, 3 Aug 2026 13:00:49 -0700 Subject: [PATCH] fix(plugin): remove agents key so Claude Code loads the four personas (#449) The explicit agents array in .claude-plugin/plugin.json causes Claude Code to load zero subagents; it discovers agents/*.md on its own, and the explicit list suppresses that discovery. Reproduced on Claude Code 2.1.219: with the key present, plugin details reports Agents (0); with it removed, all four load (code-reviewer, security-auditor, test-engineer, web-performance-auditor). Safe to omit since #260 moved agents/README.md into docs/, so the agents/ directory now holds only real agent definitions. Scoped to the Claude Code manifest only; the Codex manifest is untouched. --- .claude-plugin/plugin.json | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 347a4d4..bdf0f91 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -8,11 +8,5 @@ "repository": "https://github.com/addyosmani/agent-skills", "license": "MIT", "commands": ["./.claude/commands", "./commands"], - "skills": "./skills", - "agents": [ - "./agents/code-reviewer.md", - "./agents/security-auditor.md", - "./agents/test-engineer.md", - "./agents/web-performance-auditor.md" - ] + "skills": "./skills" }