@openclaw/acpx 2026.5.19 → 2026.5.20-beta.1
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/register.runtime.js
CHANGED
|
@@ -3,7 +3,7 @@ import { getAcpRuntimeBackend, unregisterAcpRuntimeBackend } from "openclaw/plug
|
|
|
3
3
|
const ACPX_BACKEND_ID = "acpx";
|
|
4
4
|
let serviceModulePromise = null;
|
|
5
5
|
function loadServiceModule() {
|
|
6
|
-
serviceModulePromise ??= import("./service-
|
|
6
|
+
serviceModulePromise ??= import("./service-BiP9XOLe.js");
|
|
7
7
|
return serviceModulePromise;
|
|
8
8
|
}
|
|
9
9
|
async function startRealService(state) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AcpRuntimeError } from "./runtime-api.js";
|
|
2
|
-
import { l as hashAcpxProcessCommand, n as isOpenClawLeaseAwareAcpxProcessCommand, s as createAcpxProcessLeaseId, t as cleanupOpenClawOwnedAcpxProcessTree, u as withAcpxLeaseEnvironment } from "./process-reaper-
|
|
2
|
+
import { l as hashAcpxProcessCommand, n as isOpenClawLeaseAwareAcpxProcessCommand, s as createAcpxProcessLeaseId, t as cleanupOpenClawOwnedAcpxProcessTree, u as withAcpxLeaseEnvironment } from "./process-reaper-CGYYAJxF.js";
|
|
3
3
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
4
4
|
import fs from "node:fs/promises";
|
|
5
5
|
import path, { resolve } from "node:path";
|
|
@@ -13,7 +13,6 @@ function withOpenClawManagedTurnTimeout(input) {
|
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
15
|
const CODEX_WRAPPER_STDERR_LOG_PREFIX = "codex-acp-wrapper.stderr";
|
|
16
|
-
const CODEX_WRAPPER_ERROR_TAIL_MAX_CHARS = 6e3;
|
|
17
16
|
function safeDiagnosticFilePart(value) {
|
|
18
17
|
return value.replace(/[^A-Za-z0-9._-]/g, "_").slice(0, 120) || "unknown";
|
|
19
18
|
}
|
|
@@ -33,7 +32,7 @@ function isGenericInternalAcpError(error) {
|
|
|
33
32
|
async function readCodexWrapperStderrTail(params) {
|
|
34
33
|
if (!params.wrapperRoot || !params.leaseId) return "";
|
|
35
34
|
try {
|
|
36
|
-
return compactDiagnosticText(redactSensitiveText((await fs.readFile(path.join(params.wrapperRoot, codexWrapperStderrLogFileName(params.leaseId)), "utf8")).slice(-
|
|
35
|
+
return compactDiagnosticText(redactSensitiveText((await fs.readFile(path.join(params.wrapperRoot, codexWrapperStderrLogFileName(params.leaseId)), "utf8")).slice(-6e3)));
|
|
37
36
|
} catch {
|
|
38
37
|
return "";
|
|
39
38
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { registerAcpRuntimeBackend, unregisterAcpRuntimeBackend } from "./runtime-api.js";
|
|
2
|
-
import { a as OPENCLAW_ACPX_LEASE_ID_ENV, c as createAcpxProcessLeaseStore, i as OPENCLAW_ACPX_LEASE_ID_ARG, o as OPENCLAW_GATEWAY_INSTANCE_ID_ARG, r as reapStaleOpenClawOwnedAcpxOrphans, t as cleanupOpenClawOwnedAcpxProcessTree } from "./process-reaper-
|
|
2
|
+
import { a as OPENCLAW_ACPX_LEASE_ID_ENV, c as createAcpxProcessLeaseStore, i as OPENCLAW_ACPX_LEASE_ID_ARG, o as OPENCLAW_GATEWAY_INSTANCE_ID_ARG, r as reapStaleOpenClawOwnedAcpxOrphans, t as cleanupOpenClawOwnedAcpxProcessTree } from "./process-reaper-CGYYAJxF.js";
|
|
3
3
|
import { createRequire } from "node:module";
|
|
4
4
|
import { normalizeLowercaseStringOrEmpty } from "openclaw/plugin-sdk/string-coerce-runtime";
|
|
5
5
|
import fs from "node:fs/promises";
|
|
@@ -1053,7 +1053,7 @@ const SKIP_RUNTIME_PROBE_ENV = "OPENCLAW_SKIP_ACPX_RUNTIME_PROBE";
|
|
|
1053
1053
|
const ACPX_BACKEND_ID = "acpx";
|
|
1054
1054
|
let runtimeModulePromise = null;
|
|
1055
1055
|
function loadRuntimeModule() {
|
|
1056
|
-
runtimeModulePromise ??= import("./runtime-
|
|
1056
|
+
runtimeModulePromise ??= import("./runtime-apnn_WSV.js");
|
|
1057
1057
|
return runtimeModulePromise;
|
|
1058
1058
|
}
|
|
1059
1059
|
function createDeferredResult() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/acpx",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.20-beta.1",
|
|
4
4
|
"description": "OpenClaw ACP runtime backend",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@agentclientprotocol/claude-agent-acp": "0.33.1",
|
|
12
12
|
"@zed-industries/codex-acp": "0.14.0",
|
|
13
|
-
"acpx": "0.
|
|
13
|
+
"acpx": "0.8.0",
|
|
14
14
|
"zod": "4.4.3"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"minHostVersion": ">=2026.4.25"
|
|
27
27
|
},
|
|
28
28
|
"compat": {
|
|
29
|
-
"pluginApi": ">=2026.5.
|
|
29
|
+
"pluginApi": ">=2026.5.20-beta.1"
|
|
30
30
|
},
|
|
31
31
|
"build": {
|
|
32
|
-
"openclawVersion": "2026.5.
|
|
32
|
+
"openclawVersion": "2026.5.20-beta.1",
|
|
33
33
|
"staticAssets": [
|
|
34
34
|
{
|
|
35
35
|
"source": "./src/runtime-internals/mcp-proxy.mjs",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"skills/**"
|
|
60
60
|
],
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"openclaw": ">=2026.5.
|
|
62
|
+
"openclaw": ">=2026.5.20-beta.1"
|
|
63
63
|
},
|
|
64
64
|
"peerDependenciesMeta": {
|
|
65
65
|
"openclaw": {
|
|
File without changes
|