{ "$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" } }, "agents": { "type": "array", "items": { "type": "string" } } } }