2026-03-14 12:55:25 -07:00
|
|
|
{
|
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
|
"title": "ECC Install Modules",
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"version": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"minimum": 1
|
|
|
|
|
},
|
|
|
|
|
"modules": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"minItems": 1,
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"id": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"pattern": "^[a-z0-9-]+$"
|
|
|
|
|
},
|
|
|
|
|
"kind": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"enum": [
|
|
|
|
|
"rules",
|
|
|
|
|
"agents",
|
|
|
|
|
"commands",
|
|
|
|
|
"hooks",
|
|
|
|
|
"platform",
|
|
|
|
|
"orchestration",
|
2026-05-17 20:46:04 -04:00
|
|
|
"skills",
|
|
|
|
|
"docs"
|
2026-03-14 12:55:25 -07:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"description": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"minLength": 1
|
|
|
|
|
},
|
|
|
|
|
"paths": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"minItems": 1,
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"minLength": 1
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"targets": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"minItems": 1,
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"enum": [
|
|
|
|
|
"claude",
|
2026-05-19 12:12:10 -04:00
|
|
|
"claude-project",
|
2026-03-14 12:55:25 -07:00
|
|
|
"cursor",
|
|
|
|
|
"antigravity",
|
|
|
|
|
"codex",
|
2026-03-31 18:00:07 -07:00
|
|
|
"gemini",
|
2026-04-01 05:06:26 +08:00
|
|
|
"opencode",
|
2026-05-11 10:58:24 -04:00
|
|
|
"codebuddy",
|
2026-05-11 11:15:45 -04:00
|
|
|
"joycode",
|
2026-05-17 07:06:49 -04:00
|
|
|
"qwen",
|
2026-07-04 13:20:17 +08:00
|
|
|
"zed",
|
|
|
|
|
"hermes",
|
2026-07-03 22:24:13 -07:00
|
|
|
"openclaw",
|
2026-07-27 17:27:57 -07:00
|
|
|
"kimi",
|
|
|
|
|
"adal"
|
2026-03-14 12:55:25 -07:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"pattern": "^[a-z0-9-]+$"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"defaultInstall": {
|
|
|
|
|
"type": "boolean"
|
|
|
|
|
},
|
|
|
|
|
"cost": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"enum": [
|
|
|
|
|
"light",
|
|
|
|
|
"medium",
|
|
|
|
|
"heavy"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"stability": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"enum": [
|
|
|
|
|
"experimental",
|
|
|
|
|
"beta",
|
|
|
|
|
"stable"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"required": [
|
|
|
|
|
"id",
|
|
|
|
|
"kind",
|
|
|
|
|
"description",
|
|
|
|
|
"paths",
|
|
|
|
|
"targets",
|
|
|
|
|
"dependencies",
|
|
|
|
|
"defaultInstall",
|
|
|
|
|
"cost",
|
|
|
|
|
"stability"
|
|
|
|
|
],
|
|
|
|
|
"additionalProperties": false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"required": [
|
|
|
|
|
"version",
|
|
|
|
|
"modules"
|
|
|
|
|
],
|
|
|
|
|
"additionalProperties": false
|
|
|
|
|
}
|