mirror of
https://github.com/affaan-m/ECC.git
synced 2026-08-17 21:15:40 +02:00
Rebuild of #2154 on current main, following the hermes/openclaw (#2433) adapter recipe: 10-line kimi-project adapter (project kind, ./.kimi root), registry + helpers ownership, SUPPORTED_INSTALL_TARGETS + legacy-compat modules, kimi target on the 5 shared modules + .kimi in platform-configs paths, both schema enums, npm files allowlist, help text, README stub. Credit to @MoYiC6 for the original adapter design in #2154.
68 lines
1.3 KiB
JSON
68 lines
1.3 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "ECC Install Config",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"version"
|
|
],
|
|
"properties": {
|
|
"$schema": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"version": {
|
|
"type": "integer",
|
|
"const": 1
|
|
},
|
|
"target": {
|
|
"type": "string",
|
|
"enum": [
|
|
"claude",
|
|
"claude-project",
|
|
"cursor",
|
|
"antigravity",
|
|
"codex",
|
|
"gemini",
|
|
"opencode",
|
|
"codebuddy",
|
|
"joycode",
|
|
"qwen",
|
|
"zed",
|
|
"hermes",
|
|
"openclaw",
|
|
"kimi"
|
|
]
|
|
},
|
|
"profile": {
|
|
"type": "string",
|
|
"pattern": "^[a-z0-9-]+$"
|
|
},
|
|
"modules": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^[a-z0-9-]+$"
|
|
}
|
|
},
|
|
"include": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^(baseline|lang|framework|capability):[a-z0-9-]+$"
|
|
}
|
|
},
|
|
"exclude": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^(baseline|lang|framework|capability):[a-z0-9-]+$"
|
|
}
|
|
},
|
|
"options": {
|
|
"type": "object",
|
|
"additionalProperties": true
|
|
}
|
|
}
|
|
}
|