2026-01-29 08:05:43 +01:00
|
|
|
{
|
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
|
"title": "Claude Plugin Configuration",
|
|
|
|
|
"type": "object",
|
|
|
|
|
"required": ["name"],
|
|
|
|
|
"properties": {
|
|
|
|
|
"name": { "type": "string" },
|
2026-04-30 01:05:20 -04:00
|
|
|
"version": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+(?:-[0-9A-Za-z.-]+)?$" },
|
2026-01-29 08:05:43 +01:00
|
|
|
"description": { "type": "string" },
|
2026-02-12 14:38:00 -08:00
|
|
|
"author": {
|
|
|
|
|
"oneOf": [
|
|
|
|
|
{ "type": "string" },
|
|
|
|
|
{
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"name": { "type": "string" },
|
|
|
|
|
"url": { "type": "string", "format": "uri" }
|
|
|
|
|
},
|
|
|
|
|
"required": ["name"]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"homepage": { "type": "string", "format": "uri" },
|
2026-01-29 08:05:43 +01:00
|
|
|
"repository": { "type": "string" },
|
2026-02-12 14:38:00 -08:00
|
|
|
"license": { "type": "string" },
|
|
|
|
|
"keywords": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": { "type": "string" }
|
|
|
|
|
},
|
|
|
|
|
"skills": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": { "type": "string" }
|
|
|
|
|
},
|
2026-04-30 01:05:20 -04:00
|
|
|
"commands": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": { "type": "string" }
|
|
|
|
|
},
|
|
|
|
|
"mcpServers": {
|
|
|
|
|
"oneOf": [
|
|
|
|
|
{ "type": "string" },
|
|
|
|
|
{
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": { "type": "string" }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "object"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
2026-03-09 22:05:35 -07:00
|
|
|
"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
|
2026-02-12 14:38:00 -08:00
|
|
|
}
|
2026-03-09 22:05:35 -07:00
|
|
|
},
|
|
|
|
|
"additionalProperties": false
|
2026-01-29 08:05:43 +01:00
|
|
|
}
|