@alfe.ai/openclaw-remote 0.0.7 → 0.0.8

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.
package/dist/plugin2.cjs CHANGED
@@ -428,6 +428,7 @@ const plugin = {
428
428
  description: "Interactive remote control — browser co-browse takeover and web terminal",
429
429
  version: pkg.version,
430
430
  activate(api) {
431
+ (0, _alfe_ai_agent_api_client.installToolErrorCapture)(api, { plugin: "openclaw-remote" });
431
432
  const log = api.logger;
432
433
  const pluginConfig = api.config?.plugins?.entries?.["@alfe.ai/openclaw-remote"]?.config ?? {};
433
434
  pluginConfig.browserExecutablePath ??= api.config?.browser?.executablePath;
package/dist/plugin2.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { createRequire } from "node:module";
2
2
  import { resolveConfig } from "@alfe.ai/config";
3
- import { AgentApiClient } from "@alfe.ai/agent-api-client";
3
+ import { AgentApiClient, installToolErrorCapture } from "@alfe.ai/agent-api-client";
4
4
  import { RemoteFrameType, RemoteServiceClient, decodeJson } from "@alfe.ai/remote";
5
5
  import { BrowserSurface } from "@alfe.ai/browser";
6
6
  import { TerminalSurface } from "@alfe.ai/terminal";
@@ -428,6 +428,7 @@ const plugin = {
428
428
  description: "Interactive remote control — browser co-browse takeover and web terminal",
429
429
  version: pkg.version,
430
430
  activate(api) {
431
+ installToolErrorCapture(api, { plugin: "openclaw-remote" });
431
432
  const log = api.logger;
432
433
  const pluginConfig = api.config?.plugins?.entries?.["@alfe.ai/openclaw-remote"]?.config ?? {};
433
434
  pluginConfig.browserExecutablePath ??= api.config?.browser?.executablePath;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/openclaw-remote",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "OpenClaw plugin for Alfe's interactive remote-control relay — browser co-browse + web terminal surfaces over one outbound WS",
5
5
  "type": "module",
6
6
  "main": "./dist/plugin.js",
@@ -27,7 +27,7 @@
27
27
  "openclaw.plugin.json"
28
28
  ],
29
29
  "dependencies": {
30
- "@alfe.ai/agent-api-client": "^0.7.0",
30
+ "@alfe.ai/agent-api-client": "^0.8.0",
31
31
  "@alfe.ai/browser": "^0.1.0",
32
32
  "@alfe.ai/config": "0.3.0",
33
33
  "@alfe.ai/remote": "^0.1.0",