@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
6 lines (5 loc) • 366 B
TypeScript
import type { SubagentRunRecord } from "./subagent-registry.js";
export type PersistedSubagentRegistryVersion = 1 | 2;
export declare function resolveSubagentRegistryPath(): string;
export declare function loadSubagentRegistryFromDisk(): Map<string, SubagentRunRecord>;
export declare function saveSubagentRegistryToDisk(runs: Map<string, SubagentRunRecord>): void;