UNPKG

@gguf/claw

Version:

WhatsApp gateway CLI (Baileys web) with Pi RPC agent

247 lines (245 loc) 7.9 kB
import "./paths-BDd7_JUB.js"; import "./agent-scope-CrgUOY3f.js"; import { E as danger, R as theme, c as defaultRuntime } from "./subsystem-46MXi6Ip.js"; import "./utils-Dg0Xbl6w.js"; import "./exec-CTo4hK94.js"; import "./model-selection-Cp1maz7B.js"; import "./github-copilot-token-VZsS4013.js"; import "./boolean-CE7i9tBR.js"; import "./env-DOcCob95.js"; import { r as loadConfig } from "./config-qgIz1lbh.js"; import "./manifest-registry-BFpLJJDB.js"; import { t as getChannelPlugin } from "./plugins-D1CxUobm.js"; import "./message-channel-CQGWXVL4.js"; import "./logging-BdnOSVPD.js"; import "./accounts-BlHoTziG.js"; import { t as formatDocsLink } from "./links-C9fyAH-V.js"; import { n as resolveMessageChannelSelection } from "./channel-selection-BCn8_qun.js"; import { t as resolveChannelDefaultAccountId } from "./helpers-Cw9kFCkw.js"; import { t as renderTable } from "./table-DuNe7Qes.js"; //#region src/cli/directory-cli.ts function parseLimit(value) { if (typeof value === "number" && Number.isFinite(value)) { if (value <= 0) return null; return Math.floor(value); } if (typeof value !== "string") return null; const raw = value.trim(); if (!raw) return null; const parsed = Number.parseInt(raw, 10); if (!Number.isFinite(parsed) || parsed <= 0) return null; return parsed; } function buildRows(entries) { return entries.map((entry) => ({ ID: entry.id, Name: entry.name?.trim() ?? "" })); } function registerDirectoryCli(program) { const directory = program.command("directory").description("Directory lookups (self, peers, groups) for channels that support it").addHelpText("after", () => `\n${theme.muted("Docs:")} ${formatDocsLink("/cli/directory", "docs.openclaw.ai/cli/directory")}\n`).action(() => { directory.help({ error: true }); }); const withChannel = (cmd) => cmd.option("--channel <name>", "Channel (auto when only one is configured)").option("--account <id>", "Account id (accountId)").option("--json", "Output JSON", false); const resolve = async (opts) => { const cfg = loadConfig(); const channelId = (await resolveMessageChannelSelection({ cfg, channel: opts.channel ?? null })).channel; const plugin = getChannelPlugin(channelId); if (!plugin) throw new Error(`Unsupported channel: ${String(channelId)}`); return { cfg, channelId, accountId: opts.account?.trim() || resolveChannelDefaultAccountId({ plugin, cfg }), plugin }; }; withChannel(directory.command("self").description("Show the current account user")).action(async (opts) => { try { const { cfg, channelId, accountId, plugin } = await resolve({ channel: opts.channel, account: opts.account }); const fn = plugin.directory?.self; if (!fn) throw new Error(`Channel ${channelId} does not support directory self`); const result = await fn({ cfg, accountId, runtime: defaultRuntime }); if (opts.json) { defaultRuntime.log(JSON.stringify(result, null, 2)); return; } if (!result) { defaultRuntime.log(theme.muted("Not available.")); return; } const tableWidth = Math.max(60, (process.stdout.columns ?? 120) - 1); defaultRuntime.log(theme.heading("Self")); defaultRuntime.log(renderTable({ width: tableWidth, columns: [{ key: "ID", header: "ID", minWidth: 16, flex: true }, { key: "Name", header: "Name", minWidth: 18, flex: true }], rows: buildRows([result]) }).trimEnd()); } catch (err) { defaultRuntime.error(danger(String(err))); defaultRuntime.exit(1); } }); withChannel(directory.command("peers").description("Peer directory (contacts/users)").command("list").description("List peers")).option("--query <text>", "Optional search query").option("--limit <n>", "Limit results").action(async (opts) => { try { const { cfg, channelId, accountId, plugin } = await resolve({ channel: opts.channel, account: opts.account }); const fn = plugin.directory?.listPeers; if (!fn) throw new Error(`Channel ${channelId} does not support directory peers`); const result = await fn({ cfg, accountId, query: opts.query ?? null, limit: parseLimit(opts.limit), runtime: defaultRuntime }); if (opts.json) { defaultRuntime.log(JSON.stringify(result, null, 2)); return; } if (result.length === 0) { defaultRuntime.log(theme.muted("No peers found.")); return; } const tableWidth = Math.max(60, (process.stdout.columns ?? 120) - 1); defaultRuntime.log(`${theme.heading("Peers")} ${theme.muted(`(${result.length})`)}`); defaultRuntime.log(renderTable({ width: tableWidth, columns: [{ key: "ID", header: "ID", minWidth: 16, flex: true }, { key: "Name", header: "Name", minWidth: 18, flex: true }], rows: buildRows(result) }).trimEnd()); } catch (err) { defaultRuntime.error(danger(String(err))); defaultRuntime.exit(1); } }); const groups = directory.command("groups").description("Group directory"); withChannel(groups.command("list").description("List groups")).option("--query <text>", "Optional search query").option("--limit <n>", "Limit results").action(async (opts) => { try { const { cfg, channelId, accountId, plugin } = await resolve({ channel: opts.channel, account: opts.account }); const fn = plugin.directory?.listGroups; if (!fn) throw new Error(`Channel ${channelId} does not support directory groups`); const result = await fn({ cfg, accountId, query: opts.query ?? null, limit: parseLimit(opts.limit), runtime: defaultRuntime }); if (opts.json) { defaultRuntime.log(JSON.stringify(result, null, 2)); return; } if (result.length === 0) { defaultRuntime.log(theme.muted("No groups found.")); return; } const tableWidth = Math.max(60, (process.stdout.columns ?? 120) - 1); defaultRuntime.log(`${theme.heading("Groups")} ${theme.muted(`(${result.length})`)}`); defaultRuntime.log(renderTable({ width: tableWidth, columns: [{ key: "ID", header: "ID", minWidth: 16, flex: true }, { key: "Name", header: "Name", minWidth: 18, flex: true }], rows: buildRows(result) }).trimEnd()); } catch (err) { defaultRuntime.error(danger(String(err))); defaultRuntime.exit(1); } }); withChannel(groups.command("members").description("List group members").requiredOption("--group-id <id>", "Group id")).option("--limit <n>", "Limit results").action(async (opts) => { try { const { cfg, channelId, accountId, plugin } = await resolve({ channel: opts.channel, account: opts.account }); const fn = plugin.directory?.listGroupMembers; if (!fn) throw new Error(`Channel ${channelId} does not support group members listing`); const groupId = String(opts.groupId ?? "").trim(); if (!groupId) throw new Error("Missing --group-id"); const result = await fn({ cfg, accountId, groupId, limit: parseLimit(opts.limit), runtime: defaultRuntime }); if (opts.json) { defaultRuntime.log(JSON.stringify(result, null, 2)); return; } if (result.length === 0) { defaultRuntime.log(theme.muted("No group members found.")); return; } const tableWidth = Math.max(60, (process.stdout.columns ?? 120) - 1); defaultRuntime.log(`${theme.heading("Group Members")} ${theme.muted(`(${result.length})`)}`); defaultRuntime.log(renderTable({ width: tableWidth, columns: [{ key: "ID", header: "ID", minWidth: 16, flex: true }, { key: "Name", header: "Name", minWidth: 18, flex: true }], rows: buildRows(result) }).trimEnd()); } catch (err) { defaultRuntime.error(danger(String(err))); defaultRuntime.exit(1); } }); } //#endregion export { registerDirectoryCli };