UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

306 lines (303 loc) 9.59 kB
import { t as __exportAll } from "./rolldown-runtime-Cbj13DAv.js"; import { an as getPrimaryCommand, cn as hasHelpOrVersion, n as isTruthyEnvValue, tn as buildParseArgv } from "./entry.js"; import { r as resolveActionArgs } from "./helpers-B7ilMWgy.js"; //#region src/cli/program/action-reparse.ts async function reparseProgramFromActionArgs(program, actionArgs) { const actionCommand = actionArgs.at(-1); const rawArgs = (actionCommand?.parent ?? program).rawArgs; const actionArgsList = resolveActionArgs(actionCommand); const fallbackArgv = actionCommand?.name() ? [actionCommand.name(), ...actionArgsList] : actionArgsList; const parseArgv = buildParseArgv({ programName: program.name(), rawArgs, fallbackArgv }); await program.parseAsync(parseArgv); } //#endregion //#region src/cli/program/register.subclis.ts var register_subclis_exports = /* @__PURE__ */ __exportAll({ getSubCliCommandsWithSubcommands: () => getSubCliCommandsWithSubcommands, getSubCliEntries: () => getSubCliEntries, registerSubCliByName: () => registerSubCliByName, registerSubCliCommands: () => registerSubCliCommands }); const shouldRegisterPrimaryOnly = (argv) => { if (isTruthyEnvValue(process.env.OPENCLAW_DISABLE_LAZY_SUBCOMMANDS)) return false; if (hasHelpOrVersion(argv)) return false; return true; }; const shouldEagerRegisterSubcommands = (_argv) => { return isTruthyEnvValue(process.env.OPENCLAW_DISABLE_LAZY_SUBCOMMANDS); }; const loadConfig = async () => { return (await import("./config-B2kL1ciP.js").then((n) => n.t)).loadConfig(); }; const entries = [ { name: "acp", description: "Agent Control Protocol tools", hasSubcommands: true, register: async (program) => { (await import("./acp-cli-DlcIf2yx.js")).registerAcpCli(program); } }, { name: "gateway", description: "Run, inspect, and query the WebSocket Gateway", hasSubcommands: true, register: async (program) => { (await import("./gateway-cli-msnwclc9.js")).registerGatewayCli(program); } }, { name: "daemon", description: "Gateway service (legacy alias)", hasSubcommands: true, register: async (program) => { (await import("./daemon-cli-DsrwErPq.js").then((n) => n.t)).registerDaemonCli(program); } }, { name: "logs", description: "Tail gateway file logs via RPC", hasSubcommands: false, register: async (program) => { (await import("./logs-cli-B9R-8Gyp.js")).registerLogsCli(program); } }, { name: "system", description: "System events, heartbeat, and presence", hasSubcommands: true, register: async (program) => { (await import("./system-cli-CvnFVUuJ.js")).registerSystemCli(program); } }, { name: "models", description: "Discover, scan, and configure models", hasSubcommands: true, register: async (program) => { (await import("./models-cli-DJzr6pHA.js")).registerModelsCli(program); } }, { name: "approvals", description: "Manage exec approvals (gateway or node host)", hasSubcommands: true, register: async (program) => { (await import("./exec-approvals-cli-B5oR3W8x.js")).registerExecApprovalsCli(program); } }, { name: "nodes", description: "Manage gateway-owned node pairing and node commands", hasSubcommands: true, register: async (program) => { (await import("./nodes-cli-UVXZ7xqb.js")).registerNodesCli(program); } }, { name: "devices", description: "Device pairing + token management", hasSubcommands: true, register: async (program) => { (await import("./devices-cli-DNtJs7ti.js")).registerDevicesCli(program); } }, { name: "node", description: "Run and manage the headless node host service", hasSubcommands: true, register: async (program) => { (await import("./node-cli-ByC08Pp4.js")).registerNodeCli(program); } }, { name: "sandbox", description: "Manage sandbox containers for agent isolation", hasSubcommands: true, register: async (program) => { (await import("./sandbox-cli-B0_lEO7F.js")).registerSandboxCli(program); } }, { name: "tui", description: "Open a terminal UI connected to the Gateway", hasSubcommands: false, register: async (program) => { (await import("./tui-cli-CAKL-1tn.js")).registerTuiCli(program); } }, { name: "cron", description: "Manage cron jobs via the Gateway scheduler", hasSubcommands: true, register: async (program) => { (await import("./cron-cli-RMDK559y.js")).registerCronCli(program); } }, { name: "dns", description: "DNS helpers for wide-area discovery (Tailscale + CoreDNS)", hasSubcommands: true, register: async (program) => { (await import("./dns-cli-iZb5DU6O.js")).registerDnsCli(program); } }, { name: "docs", description: "Search the live OpenClaw docs", hasSubcommands: false, register: async (program) => { (await import("./docs-cli-BEV-6Cs7.js")).registerDocsCli(program); } }, { name: "hooks", description: "Manage internal agent hooks", hasSubcommands: true, register: async (program) => { (await import("./hooks-cli-CKOVG7mv.js")).registerHooksCli(program); } }, { name: "webhooks", description: "Webhook helpers and integrations", hasSubcommands: true, register: async (program) => { (await import("./webhooks-cli-DmiQ9Ua_.js")).registerWebhooksCli(program); } }, { name: "qr", description: "Generate iOS pairing QR/setup code", hasSubcommands: false, register: async (program) => { (await import("./qr-cli-ZIL_cL0v.js").then((n) => n.t)).registerQrCli(program); } }, { name: "clawbot", description: "Legacy clawbot command aliases", hasSubcommands: true, register: async (program) => { (await import("./clawbot-cli-CEEWIU6Q.js")).registerClawbotCli(program); } }, { name: "pairing", description: "Secure DM pairing (approve inbound requests)", hasSubcommands: true, register: async (program) => { const { registerPluginCliCommands } = await import("./cli-C8BjFW6Z.js"); registerPluginCliCommands(program, await loadConfig()); (await import("./pairing-cli-DrempLqy.js")).registerPairingCli(program); } }, { name: "plugins", description: "Manage OpenClaw plugins and extensions", hasSubcommands: true, register: async (program) => { (await import("./plugins-cli-C-m4zIWs.js")).registerPluginsCli(program); const { registerPluginCliCommands } = await import("./cli-C8BjFW6Z.js"); registerPluginCliCommands(program, await loadConfig()); } }, { name: "channels", description: "Manage connected chat channels (Telegram, Discord, etc.)", hasSubcommands: true, register: async (program) => { (await import("./channels-cli-B38xtU7Y.js")).registerChannelsCli(program); } }, { name: "directory", description: "Lookup contact and group IDs (self, peers, groups) for supported chat channels", hasSubcommands: true, register: async (program) => { (await import("./directory-cli-DWsfToSN.js")).registerDirectoryCli(program); } }, { name: "security", description: "Security tools and local config audits", hasSubcommands: true, register: async (program) => { (await import("./security-cli-BxhBRudr.js")).registerSecurityCli(program); } }, { name: "skills", description: "List and inspect available skills", hasSubcommands: true, register: async (program) => { (await import("./skills-cli-B3PHEXJ1.js")).registerSkillsCli(program); } }, { name: "update", description: "Update OpenClaw and inspect update channel status", hasSubcommands: true, register: async (program) => { (await import("./update-cli-C7Fv0kIO.js")).registerUpdateCli(program); } }, { name: "completion", description: "Generate shell completion script", hasSubcommands: false, register: async (program) => { (await import("./completion-cli-D8CbjU3K.js").then((n) => n.n)).registerCompletionCli(program); } } ]; function getSubCliEntries() { return entries; } function getSubCliCommandsWithSubcommands() { return entries.filter((entry) => entry.hasSubcommands).map((entry) => entry.name); } function removeCommand(program, command) { const commands = program.commands; const index = commands.indexOf(command); if (index >= 0) commands.splice(index, 1); } async function registerSubCliByName(program, name) { const entry = entries.find((candidate) => candidate.name === name); if (!entry) return false; const existing = program.commands.find((cmd) => cmd.name() === entry.name); if (existing) removeCommand(program, existing); await entry.register(program); return true; } function registerLazyCommand(program, entry) { const placeholder = program.command(entry.name).description(entry.description); placeholder.allowUnknownOption(true); placeholder.allowExcessArguments(true); placeholder.action(async (...actionArgs) => { removeCommand(program, placeholder); await entry.register(program); await reparseProgramFromActionArgs(program, actionArgs); }); } function registerSubCliCommands(program, argv = process.argv) { if (shouldEagerRegisterSubcommands(argv)) { for (const entry of entries) entry.register(program); return; } const primary = getPrimaryCommand(argv); if (primary && shouldRegisterPrimaryOnly(argv)) { const entry = entries.find((candidate) => candidate.name === primary); if (entry) { registerLazyCommand(program, entry); return; } } for (const candidate of entries) registerLazyCommand(program, candidate); } //#endregion export { register_subclis_exports as a, registerSubCliCommands as i, getSubCliEntries as n, reparseProgramFromActionArgs as o, registerSubCliByName as r, getSubCliCommandsWithSubcommands as t };