mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
feat: add Hermes and OpenClaw harness install targets (#2433)
* feat: add Hermes and OpenClaw harness install targets - Add scripts/lib/install-targets/hermes-home.js and openclaw-home.js - Register new adapters in registry.js and helpers.js - Add hermes/openclaw to SUPPORTED_INSTALL_TARGETS, schema enum, and install help text - Add .hermes/ and .openclaw/ platform source directories with READMEs - Update install-modules.json so rules/agents/commands/platform-configs cover the new targets Verification: - npx ecc doctor reports all 13 targets OK (including hermes-home and openclaw-home) - install-targets regression guard passes for new targets - Catalog check passes * fix(install): register hermes/openclaw in install-modules schema enum + npm files allowlist --------- Co-authored-by: Lxcardoza993 <265670745+Lxcardoza993@users.noreply.github.com> Co-authored-by: Affaan Mustafa <me@affaanmustafa.com>
This commit is contained in:
parent
2d40baacbd
commit
c837139e6c
12 changed files with 111 additions and 9 deletions
|
|
@ -16,7 +16,9 @@
|
|||
"codebuddy",
|
||||
"joycode",
|
||||
"qwen",
|
||||
"zed"
|
||||
"zed",
|
||||
"hermes",
|
||||
"openclaw"
|
||||
],
|
||||
"dependencies": [],
|
||||
"defaultInstall": true,
|
||||
|
|
@ -41,7 +43,9 @@
|
|||
"codebuddy",
|
||||
"joycode",
|
||||
"qwen",
|
||||
"zed"
|
||||
"zed",
|
||||
"hermes",
|
||||
"openclaw"
|
||||
],
|
||||
"dependencies": [],
|
||||
"defaultInstall": true,
|
||||
|
|
@ -66,7 +70,9 @@
|
|||
"codebuddy",
|
||||
"joycode",
|
||||
"qwen",
|
||||
"zed"
|
||||
"zed",
|
||||
"hermes",
|
||||
"openclaw"
|
||||
],
|
||||
"dependencies": [],
|
||||
"defaultInstall": true,
|
||||
|
|
@ -108,7 +114,9 @@
|
|||
".zed",
|
||||
"mcp-configs",
|
||||
"scripts/auto-update.js",
|
||||
"scripts/setup-package-manager.js"
|
||||
"scripts/setup-package-manager.js",
|
||||
".hermes",
|
||||
".openclaw"
|
||||
],
|
||||
"targets": [
|
||||
"claude",
|
||||
|
|
@ -121,7 +129,9 @@
|
|||
"codebuddy",
|
||||
"joycode",
|
||||
"qwen",
|
||||
"zed"
|
||||
"zed",
|
||||
"hermes",
|
||||
"openclaw"
|
||||
],
|
||||
"dependencies": [],
|
||||
"defaultInstall": true,
|
||||
|
|
@ -276,7 +286,9 @@
|
|||
"codebuddy",
|
||||
"joycode",
|
||||
"qwen",
|
||||
"zed"
|
||||
"zed",
|
||||
"hermes",
|
||||
"openclaw"
|
||||
],
|
||||
"dependencies": [
|
||||
"platform-configs"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue