Bug Report
Description
Installing the plugin via claude plugin install everything-claude-code@everything-claude-code fails with a manifest validation error:
Error: Failed to install: Plugin temp_local_... has an invalid manifest file at
...\.claude-plugin\plugin.json.
Validation errors: agents: Invalid input
Root Cause
The .claude-plugin/plugin.json manifest includes:
Claude Code's plugin manifest schema does not accept agents as a plain string path. The validator rejects it with Invalid input. Other working plugins (e.g. superpowers) do not include an agents field in their manifests at all.
Steps to Reproduce
claude plugin marketplace add anthropics/claude-plugins-official
claude plugin install everything-claude-code@everything-claude-code
Expected Behavior
Plugin installs successfully.
Actual Behavior
Installation fails with Validation errors: agents: Invalid input.
Fix Suggestion
Either remove the agents field from .claude-plugin/plugin.json (if the Claude Code plugin system doesn't support it via manifest), or update it to match the format the schema expects (array of agent definitions rather than a directory path string).
Environment
- Claude Code version: 2.x (Windows 11)
- Platform: Windows 11 Enterprise
Bug Report
Description
Installing the plugin via
claude plugin install everything-claude-code@everything-claude-codefails with a manifest validation error:Root Cause
The
.claude-plugin/plugin.jsonmanifest includes:Claude Code's plugin manifest schema does not accept
agentsas a plain string path. The validator rejects it withInvalid input. Other working plugins (e.g.superpowers) do not include anagentsfield in their manifests at all.Steps to Reproduce
Expected Behavior
Plugin installs successfully.
Actual Behavior
Installation fails with
Validation errors: agents: Invalid input.Fix Suggestion
Either remove the
agentsfield from.claude-plugin/plugin.json(if the Claude Code plugin system doesn't support it via manifest), or update it to match the format the schema expects (array of agent definitions rather than a directory path string).Environment