MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / checkCPU

Function checkCPU

packages/cli/src/commands/doctor.ts:81–86  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

79// ── Hardware & Environment Checks ──────────────────────────────────────────
80
81function checkCPU(): CheckResult {
82 const sys = getSystemMeta();
83 const model = sys.cpu_model ?? "Unknown";
84 const speedStr = sys.cpu_speed ? ` @ ${sys.cpu_speed}MHz` : "";
85 return { ok: true, detail: `${sys.cpu_count} cores \u00B7 ${model}${speedStr}` };
86}
87
88function checkMemory(): CheckResult {
89 const sys = getSystemMeta();

Callers

nothing calls this directly

Calls 1

getSystemMetaFunction · 0.85

Tested by

no test coverage detected