mirror of
https://github.com/addyosmani/agent-skills.git
synced 2026-08-12 18:07:26 +02:00
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:
@@ -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"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user