mirror of
https://github.com/ruvnet/RuView
synced 2026-07-31 18:51:42 +00:00
90b29595fb
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.
18 lines
356 B
JavaScript
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;
|
|
}
|