UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

28 lines (23 loc) 724 B
import type { BaseProbeResult } from "openclaw/plugin-sdk"; import type { ZcaUserInfo } from "./types.js"; import { runZca, parseJsonOutput } from "./zca.js"; export type ZalouserProbeResult = BaseProbeResult<string> & { user?: ZcaUserInfo; }; export async function probeZalouser( profile: string, timeoutMs?: number, ): Promise<ZalouserProbeResult> { const result = await runZca(["me", "info", "-j"], { profile, timeout: timeoutMs, }); if (!result.ok) { return { ok: false, error: result.stderr || "Failed to probe" }; } const user = parseJsonOutput<ZcaUserInfo>(result.stdout); if (!user) { return { ok: false, error: "Failed to parse user info" }; } return { ok: true, user }; }