mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-23 02:23:33 +08:00
The Claude Code plugin validator rejects the "agents" field entirely. Remove it from the manifest, schema, and tests. Update schema notes to document this as a known constraint alongside the hooks field. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Claude Plugin Configuration",
|
|
"type": "object",
|
|
"required": ["name"],
|
|
"properties": {
|
|
"name": { "type": "string" },
|
|
"version": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" },
|
|
"description": { "type": "string" },
|
|
"author": {
|
|
"oneOf": [
|
|
{ "type": "string" },
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"name": { "type": "string" },
|
|
"url": { "type": "string", "format": "uri" }
|
|
},
|
|
"required": ["name"]
|
|
}
|
|
]
|
|
},
|
|
"homepage": { "type": "string", "format": "uri" },
|
|
"repository": { "type": "string" },
|
|
"license": { "type": "string" },
|
|
"keywords": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"skills": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"features": {
|
|
"type": "object",
|
|
"properties": {
|
|
"agents": { "type": "integer", "minimum": 0 },
|
|
"commands": { "type": "integer", "minimum": 0 },
|
|
"skills": { "type": "integer", "minimum": 0 },
|
|
"configAssets": { "type": "boolean" },
|
|
"hookEvents": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"customTools": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|