mirror of
https://github.com/affaan-m/ECC.git
synced 2026-08-20 14:32:24 +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.
11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
const { createInstallTargetAdapter } = require('./helpers');
|
|
|
|
module.exports = createInstallTargetAdapter({
|
|
id: 'kimi-project',
|
|
target: 'kimi',
|
|
kind: 'project',
|
|
rootSegments: ['.kimi'],
|
|
installStatePathSegments: ['ecc-install-state.json'],
|
|
nativeRootRelativePath: '.kimi',
|
|
});
|