@guadskill/openclaw-proxy 2026.2.10 → 2026.2.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/build-info.json +2 -2
  2. package/dist/canvas-host/a2ui/.bundle.hash +1 -1
  3. package/dist/{chrome-FITXsKSB.js → chrome-CBxye_ED.js} +7 -7
  4. package/dist/{completion-cli-DBmFb2Zz.js → completion-cli-BkcNcF2W.js} +2 -2
  5. package/dist/{completion-cli-DrFgqXz-.js → completion-cli-DzFGiqKN.js} +1 -1
  6. package/dist/{config-guard-B_Hef8AW.js → config-guard-GXJBeXgt.js} +6 -6
  7. package/dist/{configure-CnH4eas2.js → configure-Cn-9vqSs.js} +1 -1
  8. package/dist/{configure-BShkc6Iy.js → configure-Mwbu9bfG.js} +1 -1
  9. package/dist/control-ui/apple-touch-icon.png +0 -0
  10. package/dist/control-ui/assets/index-BeKTXH1m.js +7601 -0
  11. package/dist/control-ui/assets/index-BeKTXH1m.js.map +1 -0
  12. package/dist/control-ui/assets/index-DWhx-9JL.css +1 -0
  13. package/dist/control-ui/favicon-32.png +0 -0
  14. package/dist/control-ui/favicon.ico +0 -0
  15. package/dist/control-ui/favicon.svg +22 -0
  16. package/dist/control-ui/index.html +17 -0
  17. package/dist/{deliver-BssKD-vg.js → deliver-CR0uQwr7.js} +1 -1
  18. package/dist/{doctor-Bb0C7PCD.js → doctor-D_er5eUz.js} +2 -2
  19. package/dist/{doctor-C5EhTQAn.js → doctor-iSnCqUEi.js} +2 -2
  20. package/dist/entry.js +1 -1
  21. package/dist/extensionAPI.js +9 -9
  22. package/dist/{gateway-cli-BQvs5yMg.js → gateway-cli-BUHCHKE6.js} +5 -5
  23. package/dist/{gateway-cli-ClF2zEog.js → gateway-cli-DfFbLb7d.js} +4 -4
  24. package/dist/{health-format-i1geK3KG.js → health-format-BSrJdaJW.js} +2 -1
  25. package/dist/{health-format-BOaLA7v1.js → health-format-fowslicT.js} +2 -1
  26. package/dist/{image-DaoVwbBU.js → image-BNNazXqI.js} +1 -1
  27. package/dist/index.js +7 -7
  28. package/dist/{onboarding-o9D1SpDa.js → onboarding-KdG_ApLH.js} +3 -3
  29. package/dist/{pi-embedded-helpers-CcE0hKxw.js → pi-embedded-helpers-DBsbz1Wq.js} +4 -4
  30. package/dist/{program-3AvELN6H.js → program-CFqsq13P.js} +8 -8
  31. package/dist/{pw-ai-kZMIzSdQ.js → pw-ai-C3QEyFGj.js} +1 -1
  32. package/dist/{register.subclis-gkkP8-Yx.js → register.subclis-CYsvBF5c.js} +3 -3
  33. package/dist/{run-main-DM5TUpMe.js → run-main-Couc_fdJ.js} +10 -10
  34. package/dist/{status-Bcl2H-Cb.js → status-CHFPyXak.js} +3 -3
  35. package/dist/{update-cli-B44pCOmM.js → update-cli-C72mF9AM.js} +4 -4
  36. package/dist/{update-cli-CeCOtfHd.js → update-cli-MVVbpgcz.js} +5 -5
  37. package/dist/{update-runner-BZsT7ZyA.js → update-runner-CsWAyRQf.js} +2 -2
  38. package/dist/{update-runner-CkoLrD4r.js → update-runner-CztlHuQ9.js} +2 -2
  39. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2026.2.10",
2
+ "version": "2026.2.11",
3
3
  "commit": "7845f4ee5a8defde7c9726b0144a1cd8305835cd",
4
- "builtAt": "2026-02-10T08:08:26.501Z"
4
+ "builtAt": "2026-02-10T08:24:49.489Z"
5
5
  }
@@ -1 +1 @@
1
- 8a830fa6c72711fef96abc20f5efb9e83024b6b9e4df70d65e5596e6ba156bc4
1
+ c2b27f41fbeef39ec1e9b357e454f8218794384202e965b5cf39db78ea901241
@@ -8,7 +8,7 @@ import fs$1 from "node:fs/promises";
8
8
  import { execFileSync, spawn } from "node:child_process";
9
9
  import { randomBytes } from "node:crypto";
10
10
  import { createServer } from "node:http";
11
- import WebSocket, { WebSocketServer } from "ws";
11
+ import WebSocket$1, { WebSocketServer } from "ws";
12
12
  import net from "node:net";
13
13
  import { Buffer as Buffer$1 } from "node:buffer";
14
14
 
@@ -181,7 +181,7 @@ async function ensureChromeExtensionRelayServer(opts) {
181
181
  let nextExtensionId = 1;
182
182
  const sendToExtension = async (payload) => {
183
183
  const ws = extensionWs;
184
- if (!ws || ws.readyState !== WebSocket.OPEN) throw new Error("Chrome extension not connected");
184
+ if (!ws || ws.readyState !== WebSocket$1.OPEN) throw new Error("Chrome extension not connected");
185
185
  ws.send(JSON.stringify(payload));
186
186
  return await new Promise((resolve, reject) => {
187
187
  const timer = setTimeout(() => {
@@ -198,12 +198,12 @@ async function ensureChromeExtensionRelayServer(opts) {
198
198
  const broadcastToCdpClients = (evt) => {
199
199
  const msg = JSON.stringify(evt);
200
200
  for (const ws of cdpClients) {
201
- if (ws.readyState !== WebSocket.OPEN) continue;
201
+ if (ws.readyState !== WebSocket$1.OPEN) continue;
202
202
  ws.send(msg);
203
203
  }
204
204
  };
205
205
  const sendResponseToCdp = (ws, res) => {
206
- if (ws.readyState !== WebSocket.OPEN) return;
206
+ if (ws.readyState !== WebSocket$1.OPEN) return;
207
207
  ws.send(JSON.stringify(res));
208
208
  };
209
209
  const ensureTargetEventsForClient = (ws, mode) => {
@@ -423,7 +423,7 @@ async function ensureChromeExtensionRelayServer(opts) {
423
423
  wssExtension.on("connection", (ws) => {
424
424
  extensionWs = ws;
425
425
  const ping = setInterval(() => {
426
- if (ws.readyState !== WebSocket.OPEN) return;
426
+ if (ws.readyState !== WebSocket$1.OPEN) return;
427
427
  ws.send(JSON.stringify({ method: "ping" }));
428
428
  }, 5e3);
429
429
  ws.on("message", (data) => {
@@ -716,7 +716,7 @@ async function fetchJson(url, timeoutMs = 1500, init) {
716
716
  }
717
717
  async function withCdpSocket(wsUrl, fn, opts) {
718
718
  const headers = getHeadersWithAuth(wsUrl, opts?.headers ?? {});
719
- const ws = new WebSocket(wsUrl, {
719
+ const ws = new WebSocket$1(wsUrl, {
720
720
  handshakeTimeout: 5e3,
721
721
  ...Object.keys(headers).length ? { headers } : {}
722
722
  });
@@ -1844,7 +1844,7 @@ async function getChromeWebSocketUrl(cdpUrl, timeoutMs = 500) {
1844
1844
  async function canOpenWebSocket(wsUrl, timeoutMs = 800) {
1845
1845
  return await new Promise((resolve) => {
1846
1846
  const headers = getHeadersWithAuth(wsUrl);
1847
- const ws = new WebSocket(wsUrl, {
1847
+ const ws = new WebSocket$1(wsUrl, {
1848
1848
  handshakeTimeout: timeoutMs,
1849
1849
  ...Object.keys(headers).length ? { headers } : {}
1850
1850
  });
@@ -124,7 +124,7 @@ const entries = [
124
124
  name: "gateway",
125
125
  description: "Gateway control",
126
126
  register: async (program) => {
127
- (await import("./gateway-cli-ClF2zEog.js")).registerGatewayCli(program);
127
+ (await import("./gateway-cli-DfFbLb7d.js")).registerGatewayCli(program);
128
128
  }
129
129
  },
130
130
  {
@@ -282,7 +282,7 @@ const entries = [
282
282
  name: "update",
283
283
  description: "CLI update helpers",
284
284
  register: async (program) => {
285
- (await import("./update-cli-B44pCOmM.js")).registerUpdateCli(program);
285
+ (await import("./update-cli-C72mF9AM.js")).registerUpdateCli(program);
286
286
  }
287
287
  },
288
288
  {
@@ -1,6 +1,6 @@
1
1
  import { t as __exportAll } from "./rolldown-runtime-Cbj13DAv.js";
2
2
  import { X as resolveStateDir } from "./entry.js";
3
- import { n as registerSubCliByName, t as getSubCliEntries } from "./register.subclis-gkkP8-Yx.js";
3
+ import { n as registerSubCliByName, t as getSubCliEntries } from "./register.subclis-CYsvBF5c.js";
4
4
  import path from "node:path";
5
5
  import os from "node:os";
6
6
  import fsPromises from "node:fs/promises";
@@ -23,7 +23,7 @@ import { d as loadSessionStore } from "./sandbox-D889a-F8.js";
23
23
  import { n as formatTimeAgo } from "./format-relative-CZOlQ2pA.js";
24
24
  import { n as runCommandWithRuntime } from "./cli-utils-DKF-leO3.js";
25
25
  import { n as ensurePluginRegistryLoaded, t as hasExplicitOptions } from "./command-options-DFbsypaU.js";
26
- import { l as getVerboseFlag, o as getFlagValue, r as registerSubCliCommands, s as getPositiveIntFlagValue, u as hasFlag } from "./register.subclis-gkkP8-Yx.js";
26
+ import { l as getVerboseFlag, o as getFlagValue, r as registerSubCliCommands, s as getPositiveIntFlagValue, u as hasFlag } from "./register.subclis-CYsvBF5c.js";
27
27
  import { n as parsePositiveIntOrUndefined, t as collectOption } from "./helpers-CRGd0w3b.js";
28
28
  import { n as callGatewayFromCli, t as addGatewayClientOptions } from "./gateway-rpc-CUNihWum.js";
29
29
  import { t as createDefaultDeps } from "./deps-BBw98Cve.js";
@@ -32,15 +32,15 @@ import { t as resolveGatewayService } from "./service-CJ_9zG2c.js";
32
32
  import { r as isSystemdUserServiceAvailable } from "./systemd-D8TmVYdf.js";
33
33
  import { t as renderTable } from "./table--JAk2fhT.js";
34
34
  import { d as applyAuthChoice, f as applyOpenAIConfig, h as promptAuthChoiceGrouped, m as applyGoogleGeminiModelDefault, p as upsertSharedEnvVar, u as warnIfModelConfigLooksOff } from "./onboard-skills-Cli5aapW.js";
35
- import { l as healthCommand } from "./health-format-BOaLA7v1.js";
35
+ import { l as healthCommand } from "./health-format-fowslicT.js";
36
36
  import { $ as setMinimaxApiKey, C as applyMoonshotConfig, D as applyOpenrouterConfig, F as applyVeniceConfig, L as applyVercelAiGatewayConfig, N as applyTogetherConfig, Q as setKimiCodingApiKey, U as applyZaiConfig, V as applyXiaomiConfig, X as setCloudflareAiGatewayConfig, Y as setAnthropicApiKey, Z as setGeminiApiKey, _t as validateAnthropicSetupToken, at as setTogetherApiKey, ct as setXaiApiKey, et as setMoonshotApiKey, f as applyOpencodeZenConfig, g as applyMinimaxConfig, gt as buildTokenProfileId, it as setSyntheticApiKey, j as applySyntheticConfig, k as applyQianfanConfig, lt as setXiaomiApiKey, m as applyMinimaxApiConfig, nt as setOpenrouterApiKey, ot as setVeniceApiKey, rt as setQianfanApiKey, st as setVercelAiGatewayApiKey, tt as setOpencodeZenApiKey, ut as setZaiApiKey, v as applyAuthProfileConfig, w as applyMoonshotConfigCn, x as applyKimiCodeConfig, y as applyCloudflareAiGatewayConfig, z as applyXaiConfig } from "./github-copilot-auth-TxtjXx5m.js";
37
37
  import { n as logConfigUpdated, t as formatConfigPath } from "./logging-BENMfvo0.js";
38
- import { a as findAgentEntryIndex, c as pruneAgentConfig, d as parseIdentityMarkdown, f as runOnboardingWizard, i as buildAgentSummaries, l as identityHasValues, o as listAgentEntries, r as applyAgentConfig, s as loadAgentIdentity, t as statusCommand } from "./status-Bcl2H-Cb.js";
38
+ import { a as findAgentEntryIndex, c as pruneAgentConfig, d as parseIdentityMarkdown, f as runOnboardingWizard, i as buildAgentSummaries, l as identityHasValues, o as listAgentEntries, r as applyAgentConfig, s as loadAgentIdentity, t as statusCommand } from "./status-CHFPyXak.js";
39
39
  import { a as createOutboundSendDeps, n as resolveSessionKeyForRequest, t as agentCommand } from "./agent-D-ZY5Ay1.js";
40
40
  import { t as formatHelpExamples } from "./help-format-BBZy5-Be.js";
41
- import { i as CONFIGURE_WIZARD_SECTIONS, n as configureCommand, r as configureCommandWithSections } from "./configure-CnH4eas2.js";
41
+ import { i as CONFIGURE_WIZARD_SECTIONS, n as configureCommand, r as configureCommandWithSections } from "./configure-Cn-9vqSs.js";
42
42
  import { n as ensureSystemdUserLingerNonInteractive } from "./systemd-linger-C57Dz7hA.js";
43
- import { n as loadAndMaybeMigrateDoctorConfig, t as doctorCommand } from "./doctor-C5EhTQAn.js";
43
+ import { n as loadAndMaybeMigrateDoctorConfig, t as doctorCommand } from "./doctor-iSnCqUEi.js";
44
44
  import path from "node:path";
45
45
  import fs from "node:fs";
46
46
  import JSON5 from "json5";
@@ -2782,7 +2782,7 @@ async function loadValidConfig() {
2782
2782
  }
2783
2783
  function registerConfigCli(program) {
2784
2784
  const cmd = program.command("config").description("Config helpers (get/set/unset). Run without subcommand for the wizard.").addHelpText("after", () => `\n${theme.muted("Docs:")} ${formatDocsLink("/cli/config", "docs.openclaw.ai/cli/config")}\n`).option("--section <section>", "Configure wizard sections (repeatable). Use with no subcommand.", (value, previous) => [...previous, value], []).action(async (opts) => {
2785
- const { CONFIGURE_WIZARD_SECTIONS, configureCommand, configureCommandWithSections } = await import("./configure-CnH4eas2.js").then((n) => n.t);
2785
+ const { CONFIGURE_WIZARD_SECTIONS, configureCommand, configureCommandWithSections } = await import("./configure-Cn-9vqSs.js").then((n) => n.t);
2786
2786
  const sections = Array.isArray(opts.section) ? opts.section.map((value) => typeof value === "string" ? value.trim() : "").filter(Boolean) : [];
2787
2787
  if (sections.length === 0) {
2788
2788
  await configureCommand(defaultRuntime);
@@ -16,7 +16,7 @@ import { n as setupChannels, t as noteChannelStatus } from "./onboard-channels-B
16
16
  import { a as gatewayInstallErrorHint, i as buildGatewayInstallPlan, n as GATEWAY_DAEMON_RUNTIME_OPTIONS, t as DEFAULT_GATEWAY_DAEMON_RUNTIME } from "./daemon-runtime-DLtjWz00.js";
17
17
  import { t as resolveGatewayService } from "./service-CJ_9zG2c.js";
18
18
  import { a as applyModelFallbacksFromSelection, c as promptModelAllowlist, d as applyAuthChoice, h as promptAuthChoiceGrouped, i as applyModelAllowlist, l as resolvePreferredProviderForAuthChoice, o as applyPrimaryModel, r as promptRemoteGatewayConfig, s as promptDefaultModel, t as setupSkills } from "./onboard-skills-Cli5aapW.js";
19
- import { l as healthCommand, n as ensureControlUiAssetsBuilt, t as formatHealthCheckFailure } from "./health-format-BOaLA7v1.js";
19
+ import { l as healthCommand, n as ensureControlUiAssetsBuilt, t as formatHealthCheckFailure } from "./health-format-fowslicT.js";
20
20
  import { n as logConfigUpdated } from "./logging-BENMfvo0.js";
21
21
  import { t as ensureSystemdUserLingerInteractive } from "./systemd-linger-C57Dz7hA.js";
22
22
  import { confirm, intro, outro, select, text } from "@clack/prompts";
@@ -17,7 +17,7 @@ import { t as WizardCancelledError } from "./prompts-CMFALzCp.js";
17
17
  import { t as createClackPrompter } from "./clack-prompter-S0qXMAox.js";
18
18
  import { a as applyModelAllowlist, c as promptDefaultModel, f as applyAuthChoice, g as promptAuthChoiceGrouped, l as promptModelAllowlist, o as applyModelFallbacksFromSelection, r as promptRemoteGatewayConfig, s as applyPrimaryModel, t as setupSkills, u as resolvePreferredProviderForAuthChoice } from "./onboard-skills-bQdrzd5W.js";
19
19
  import { n as setupChannels, t as noteChannelStatus } from "./onboard-channels-Bi5gN7Cg.js";
20
- import { l as healthCommand, n as ensureControlUiAssetsBuilt, t as formatHealthCheckFailure } from "./health-format-i1geK3KG.js";
20
+ import { l as healthCommand, n as ensureControlUiAssetsBuilt, t as formatHealthCheckFailure } from "./health-format-BSrJdaJW.js";
21
21
  import { t as resolveGatewayService } from "./service-gVhgRoT3.js";
22
22
  import { t as ensureSystemdUserLingerInteractive } from "./systemd-linger-Cg55REe7.js";
23
23
  import { confirm, intro, outro, select, text } from "@clack/prompts";