MCPcopy Create free account
hub / github.com/SethGammon/Citadel / main

Function main

scripts/runtime-matrix.js:38–46  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

36}
37
38function main() {
39 const args = parseArgs(process.argv);
40 if (args.help) {
41 process.stdout.write(`${usage()}\n`);
42 return;
43 }
44 const matrix = runtime.getRuntimeAdapterMatrix(args.runtimeId);
45 process.stdout.write(args.json ? `${JSON.stringify(matrix, null, 2)}\n` : render(matrix));
46}
47
48if (require.main === module) {
49 main();

Callers 1

runtime-matrix.jsFile · 0.70

Calls 3

parseArgsFunction · 0.70
usageFunction · 0.70
renderFunction · 0.70

Tested by

no test coverage detected