Files
ruvnet--RuView/harness/homecore/src/hosts/index.js
T
rUv 90b29595fb feat(homecore): add WASM-first developer metaharness (#1477)
Adds the accepted ADR-285 Homecore metaharness, WASM-first kernel, read-only MCP guidance, guarded local host adapters, reviewed memory, and provenance-only npm release gates.
2026-07-29 19:51:21 -04:00

18 lines
356 B
JavaScript

// SPDX-License-Identifier: MIT
import claudeCode from './claude-code.js';
import codex from './codex.js';
export { claudeCode, codex };
export const HOSTS = Object.freeze({
'claude-code': claudeCode,
codex,
});
export function getHost(name) {
const host = HOSTS[name];
if (!host) throw new Error(`Unsupported host: ${name}`);
return host;
}