mirror of
https://github.com/ruvnet/RuView
synced 2026-08-10 20:31:42 +00:00
feat(ruview): secure community metaharness flywheel (#1467)
* feat(ruview): add secure community metaharness flywheel * fix(ruview): canonicalize manifest line endings
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
// 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;
|
||||
}
|
||||
Reference in New Issue
Block a user