MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / readAll

Function readAll

src/runtime/registry.ts:328–332  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

326 * Read all registry entries. Exported for `@cremini/skillpack-node`.
327 */
328export function readAll(): RegistryEntry[] {
329 return listEntryFiles()
330 .map((entryPath) => readEntryFile(entryPath))
331 .filter((entry): entry is RegistryEntry => entry !== null);
332}
333
334/**
335 * Check whether a pid is still alive.

Callers 2

readRegistryFunction · 0.85
validateEntriesFunction · 0.85

Calls 2

listEntryFilesFunction · 0.85
readEntryFileFunction · 0.85

Tested by

no test coverage detected