changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "agents": {
+ "description": "relative paths to agent files",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "author": {
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "category": {
+ "type": "string"
+ },
+ "commands": {
+ "description": "relative paths to command files",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "counts": {
+ "additionalProperties": false,
+ "description": "component counts",
+ "properties": {
+ "agents": {
+ "type": "integer"
+ },
+ "commands": {
+ "type": "integer"
+ },
+ "skills": {
+ "type": "integer"
+ }
+ },
+ "required": [
+ "commands",
+ "agents",
+ "skills"
+ ],
+ "type": "object"
+ },
+ "description": {
+ "type": "string"
+ },
+ "homepage": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "installCommand": {
+ "description": "command to install this plugin",
+ "type": "string"
+ },
+ "installMarketplace": {
+ "description": "command to add the marketplace to Claude Code",
+ "type": "string"
+ },
+ "license": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "searchableText": {
+ "description": "lowercased text used for matching",
+ "type": "string"
+ },
+ "skills": {
+ "description": "relative paths to skill manifests",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "tags": {
+ "description": "keywords from the marketplace entry",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "version": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "tags",
+ "commands",
+ "agents",
+ "skills",
+ "counts",
+ "installMarketplace",
+ "installCommand",
+ "searchableText"
+ ],
+ "type": "object"
+}