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.
This commit is contained in:
Addy Osmani
2026-08-03 13:00:49 -07:00
parent 7829ffd90d
commit 366beecb73
+1 -7
View File
@@ -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"
}