@openclaw/acpx 2026.5.30-beta.1 → 2026.5.31-beta.2
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/index.js +1 -1
- package/dist/{process-reaper-CAUlLOkM.js → process-reaper-rnTgvFuQ.js} +1 -1
- package/dist/{register.runtime-L0KL5zS4.js → register.runtime-0-mDKpgI.js} +1 -1
- package/dist/register.runtime.js +1 -1
- package/dist/{runtime-CWN42s53.js → runtime-CJDn6Jos.js} +16 -9
- package/dist/{service-CLaP4k7z.js → service-C-ZETCyN.js} +3 -3
- package/npm-shrinkwrap.json +60 -60
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as createAcpxRuntimeService } from "./register.runtime-
|
|
1
|
+
import { t as createAcpxRuntimeService } from "./register.runtime-0-mDKpgI.js";
|
|
2
2
|
import { tryDispatchAcpReplyHook } from "openclaw/plugin-sdk/acp-runtime-backend";
|
|
3
3
|
//#region extensions/acpx/index.ts
|
|
4
4
|
const plugin = {
|
|
@@ -87,7 +87,7 @@ async function readLeaseFile(filePath) {
|
|
|
87
87
|
});
|
|
88
88
|
return {
|
|
89
89
|
version: 1,
|
|
90
|
-
leases: Array.isArray(value.leases) ? value.leases.map(normalizeLease).filter((lease) =>
|
|
90
|
+
leases: Array.isArray(value.leases) ? value.leases.map(normalizeLease).filter((lease) => Boolean(lease)) : []
|
|
91
91
|
};
|
|
92
92
|
}
|
|
93
93
|
function writeLeaseFile(filePath, value) {
|
|
@@ -191,7 +191,7 @@ function createLazyAcpRuntimeProxy(resolveRuntime) {
|
|
|
191
191
|
const ACPX_BACKEND_ID = "acpx";
|
|
192
192
|
let serviceModulePromise = null;
|
|
193
193
|
function loadServiceModule() {
|
|
194
|
-
serviceModulePromise ??= import("./service-
|
|
194
|
+
serviceModulePromise ??= import("./service-C-ZETCyN.js");
|
|
195
195
|
return serviceModulePromise;
|
|
196
196
|
}
|
|
197
197
|
async function startRealService(state) {
|
package/dist/register.runtime.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as createAcpxRuntimeService } from "./register.runtime-
|
|
1
|
+
import { t as createAcpxRuntimeService } from "./register.runtime-0-mDKpgI.js";
|
|
2
2
|
export { createAcpxRuntimeService };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AcpRuntimeError } from "./runtime-api.js";
|
|
2
|
-
import { f as hashAcpxProcessCommand, h as splitCommandParts, n as isOpenClawLeaseAwareAcpxProcessCommand, p as withAcpxLeaseEnvironment, t as cleanupOpenClawOwnedAcpxProcessTree, u as createAcpxProcessLeaseId } from "./process-reaper-
|
|
2
|
+
import { f as hashAcpxProcessCommand, h as splitCommandParts, n as isOpenClawLeaseAwareAcpxProcessCommand, p as withAcpxLeaseEnvironment, t as cleanupOpenClawOwnedAcpxProcessTree, u as createAcpxProcessLeaseId } from "./process-reaper-rnTgvFuQ.js";
|
|
3
3
|
import { normalizeStringEntries } from "openclaw/plugin-sdk/string-coerce-runtime";
|
|
4
4
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
5
5
|
import fs from "node:fs/promises";
|
|
@@ -14,6 +14,13 @@ function withOpenClawManagedTurnTimeout(input) {
|
|
|
14
14
|
timeoutMs: 0
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
function withOpenClawLeaseSessionMetadata(record, metadata) {
|
|
18
|
+
return {
|
|
19
|
+
...record,
|
|
20
|
+
openclawLeaseId: metadata.openclawLeaseId,
|
|
21
|
+
openclawGatewayInstanceId: metadata.openclawGatewayInstanceId
|
|
22
|
+
};
|
|
23
|
+
}
|
|
17
24
|
const CODEX_WRAPPER_STDERR_LOG_PREFIX = "codex-acp-wrapper.stderr";
|
|
18
25
|
function safeDiagnosticFilePart(value) {
|
|
19
26
|
return value.replace(/[^A-Za-z0-9._-]/g, "_").slice(0, 120) || "unknown";
|
|
@@ -98,11 +105,10 @@ function createResetAwareSessionStore(baseStore, params) {
|
|
|
98
105
|
rootPid: readRecordAgentPid(record)
|
|
99
106
|
});
|
|
100
107
|
if (!lease) return record;
|
|
101
|
-
return {
|
|
102
|
-
...record,
|
|
108
|
+
return withOpenClawLeaseSessionMetadata(record, {
|
|
103
109
|
openclawLeaseId: lease.leaseId,
|
|
104
110
|
openclawGatewayInstanceId: lease.gatewayInstanceId
|
|
105
|
-
};
|
|
111
|
+
});
|
|
106
112
|
},
|
|
107
113
|
async save(record) {
|
|
108
114
|
let recordToSave = record;
|
|
@@ -124,12 +130,13 @@ function createResetAwareSessionStore(baseStore, params) {
|
|
|
124
130
|
state: "open"
|
|
125
131
|
};
|
|
126
132
|
await params.leaseStore.save(lease);
|
|
127
|
-
recordToSave = {
|
|
133
|
+
recordToSave = withOpenClawLeaseSessionMetadata({
|
|
128
134
|
...record,
|
|
129
|
-
agentCommand: stableAgentCommand
|
|
135
|
+
agentCommand: stableAgentCommand
|
|
136
|
+
}, {
|
|
130
137
|
openclawLeaseId: launch.leaseId,
|
|
131
138
|
openclawGatewayInstanceId: launch.gatewayInstanceId
|
|
132
|
-
};
|
|
139
|
+
});
|
|
133
140
|
}
|
|
134
141
|
await baseStore.save(recordToSave);
|
|
135
142
|
if (sessionName) freshSessionKeys.delete(sessionName);
|
|
@@ -296,7 +303,7 @@ function createModelScopedAgentRegistry(params) {
|
|
|
296
303
|
resolve(agentName) {
|
|
297
304
|
const command = params.agentRegistry.resolve(agentName);
|
|
298
305
|
const override = params.scope.getStore();
|
|
299
|
-
if (!override || normalizeAgentName(agentName) !== CODEX_ACP_AGENT_ID ||
|
|
306
|
+
if (!override || normalizeAgentName(agentName) !== CODEX_ACP_AGENT_ID || !isCodexAcpCommand(command)) return params.leaseCommand(command);
|
|
300
307
|
return params.leaseCommand(appendCodexAcpConfigOverrides(command, override));
|
|
301
308
|
},
|
|
302
309
|
list() {
|
|
@@ -386,7 +393,7 @@ var AcpxRuntime = class {
|
|
|
386
393
|
}
|
|
387
394
|
commandWithLaunchLease(command) {
|
|
388
395
|
const launch = this.launchLeaseScope.getStore();
|
|
389
|
-
if (!
|
|
396
|
+
if (!launch) return command;
|
|
390
397
|
launch.stableCommand = command;
|
|
391
398
|
return withAcpxLeaseEnvironment({
|
|
392
399
|
command,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { n as createLazyAcpRuntimeProxy } from "./register.runtime-
|
|
1
|
+
import { n as createLazyAcpRuntimeProxy } from "./register.runtime-0-mDKpgI.js";
|
|
2
2
|
import { registerAcpRuntimeBackend, unregisterAcpRuntimeBackend } from "./runtime-api.js";
|
|
3
|
-
import { a as resolveAcpxPluginRoot, c as OPENCLAW_ACPX_LEASE_ID_ENV, d as createAcpxProcessLeaseStore, h as splitCommandParts, i as resolveAcpxPluginConfig, l as OPENCLAW_GATEWAY_INSTANCE_ID_ARG, m as quoteCommandPart, o as toAcpMcpServers, r as reapStaleOpenClawOwnedAcpxOrphans, s as OPENCLAW_ACPX_LEASE_ID_ARG, t as cleanupOpenClawOwnedAcpxProcessTree } from "./process-reaper-
|
|
3
|
+
import { a as resolveAcpxPluginRoot, c as OPENCLAW_ACPX_LEASE_ID_ENV, d as createAcpxProcessLeaseStore, h as splitCommandParts, i as resolveAcpxPluginConfig, l as OPENCLAW_GATEWAY_INSTANCE_ID_ARG, m as quoteCommandPart, o as toAcpMcpServers, r as reapStaleOpenClawOwnedAcpxOrphans, s as OPENCLAW_ACPX_LEASE_ID_ARG, t as cleanupOpenClawOwnedAcpxProcessTree } from "./process-reaper-rnTgvFuQ.js";
|
|
4
4
|
import { createRequire } from "node:module";
|
|
5
5
|
import fs from "node:fs/promises";
|
|
6
6
|
import path from "node:path";
|
|
@@ -802,7 +802,7 @@ const SKIP_RUNTIME_PROBE_ENV = "OPENCLAW_SKIP_ACPX_RUNTIME_PROBE";
|
|
|
802
802
|
const ACPX_BACKEND_ID = "acpx";
|
|
803
803
|
let runtimeModulePromise = null;
|
|
804
804
|
function loadRuntimeModule() {
|
|
805
|
-
runtimeModulePromise ??= import("./runtime-
|
|
805
|
+
runtimeModulePromise ??= import("./runtime-CJDn6Jos.js");
|
|
806
806
|
return runtimeModulePromise;
|
|
807
807
|
}
|
|
808
808
|
function resolveAcpxTimerTimeoutMs(timeoutSeconds) {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/acpx",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.31-beta.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@openclaw/acpx",
|
|
9
|
-
"version": "2026.5.
|
|
9
|
+
"version": "2026.5.31-beta.2",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@agentclientprotocol/claude-agent-acp": "0.
|
|
11
|
+
"@agentclientprotocol/claude-agent-acp": "0.39.0",
|
|
12
12
|
"@zed-industries/codex-acp": "0.15.0",
|
|
13
13
|
"acpx": "0.10.0",
|
|
14
14
|
"zod": "4.4.3"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"node_modules/@agentclientprotocol/claude-agent-acp": {
|
|
18
|
-
"version": "0.
|
|
19
|
-
"resolved": "https://registry.npmjs.org/@agentclientprotocol/claude-agent-acp/-/claude-agent-acp-0.
|
|
20
|
-
"integrity": "sha512
|
|
18
|
+
"version": "0.39.0",
|
|
19
|
+
"resolved": "https://registry.npmjs.org/@agentclientprotocol/claude-agent-acp/-/claude-agent-acp-0.39.0.tgz",
|
|
20
|
+
"integrity": "sha512-+tCm5v32L0R3zE4qjZQowfO1L/zqvQ5FapmsMSIf4gawXfTf26CG5hgz99wARdo0zn20/1eP80gzx7PbZlSX9A==",
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@agentclientprotocol/sdk": "0.22.1",
|
|
24
|
-
"@anthropic-ai/claude-agent-sdk": "0.3.
|
|
24
|
+
"@anthropic-ai/claude-agent-sdk": "0.3.156",
|
|
25
25
|
"zod": "^3.25.0 || ^4.0.0"
|
|
26
26
|
},
|
|
27
27
|
"bin": {
|
|
@@ -38,22 +38,22 @@
|
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"node_modules/@anthropic-ai/claude-agent-sdk": {
|
|
41
|
-
"version": "0.3.
|
|
42
|
-
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk/-/claude-agent-sdk-0.3.
|
|
43
|
-
"integrity": "sha512-
|
|
41
|
+
"version": "0.3.156",
|
|
42
|
+
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk/-/claude-agent-sdk-0.3.156.tgz",
|
|
43
|
+
"integrity": "sha512-6nM/Dj+VMds52UXJ2YaV4IKhYamlUqN0HtdDrFzYz5lvPMpDS935qD8YZDAUpy+ltdoD6PJMd1V/CKFY3/oWCQ==",
|
|
44
44
|
"license": "SEE LICENSE IN README.md",
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=18.0.0"
|
|
47
47
|
},
|
|
48
48
|
"optionalDependencies": {
|
|
49
|
-
"@anthropic-ai/claude-agent-sdk-darwin-arm64": "0.3.
|
|
50
|
-
"@anthropic-ai/claude-agent-sdk-darwin-x64": "0.3.
|
|
51
|
-
"@anthropic-ai/claude-agent-sdk-linux-arm64": "0.3.
|
|
52
|
-
"@anthropic-ai/claude-agent-sdk-linux-arm64-musl": "0.3.
|
|
53
|
-
"@anthropic-ai/claude-agent-sdk-linux-x64": "0.3.
|
|
54
|
-
"@anthropic-ai/claude-agent-sdk-linux-x64-musl": "0.3.
|
|
55
|
-
"@anthropic-ai/claude-agent-sdk-win32-arm64": "0.3.
|
|
56
|
-
"@anthropic-ai/claude-agent-sdk-win32-x64": "0.3.
|
|
49
|
+
"@anthropic-ai/claude-agent-sdk-darwin-arm64": "0.3.156",
|
|
50
|
+
"@anthropic-ai/claude-agent-sdk-darwin-x64": "0.3.156",
|
|
51
|
+
"@anthropic-ai/claude-agent-sdk-linux-arm64": "0.3.156",
|
|
52
|
+
"@anthropic-ai/claude-agent-sdk-linux-arm64-musl": "0.3.156",
|
|
53
|
+
"@anthropic-ai/claude-agent-sdk-linux-x64": "0.3.156",
|
|
54
|
+
"@anthropic-ai/claude-agent-sdk-linux-x64-musl": "0.3.156",
|
|
55
|
+
"@anthropic-ai/claude-agent-sdk-win32-arm64": "0.3.156",
|
|
56
|
+
"@anthropic-ai/claude-agent-sdk-win32-x64": "0.3.156"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"@anthropic-ai/sdk": ">=0.93.0",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
"node_modules/@anthropic-ai/claude-agent-sdk-darwin-arm64": {
|
|
65
|
-
"version": "0.3.
|
|
66
|
-
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-darwin-arm64/-/claude-agent-sdk-darwin-arm64-0.3.
|
|
67
|
-
"integrity": "sha512-
|
|
65
|
+
"version": "0.3.156",
|
|
66
|
+
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-darwin-arm64/-/claude-agent-sdk-darwin-arm64-0.3.156.tgz",
|
|
67
|
+
"integrity": "sha512-IkjcS9dqAUlD4Nb62L9AZtmAXCa+FV4ul8lIlyXXUprh3nlecbKsWOXVd/GORrzAhMmynJaX4+iV1JiutFKXUA==",
|
|
68
68
|
"cpu": [
|
|
69
69
|
"arm64"
|
|
70
70
|
],
|
|
@@ -75,9 +75,9 @@
|
|
|
75
75
|
]
|
|
76
76
|
},
|
|
77
77
|
"node_modules/@anthropic-ai/claude-agent-sdk-darwin-x64": {
|
|
78
|
-
"version": "0.3.
|
|
79
|
-
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-darwin-x64/-/claude-agent-sdk-darwin-x64-0.3.
|
|
80
|
-
"integrity": "sha512-
|
|
78
|
+
"version": "0.3.156",
|
|
79
|
+
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-darwin-x64/-/claude-agent-sdk-darwin-x64-0.3.156.tgz",
|
|
80
|
+
"integrity": "sha512-6PKi5fPmGRuzXu+Em/iwLmPG3mqg0hl92wcTU8fmChqyNtxhxsjCw7LTbdFqp/05o5NeZVVV4k3p7YUv5IFD6g==",
|
|
81
81
|
"cpu": [
|
|
82
82
|
"x64"
|
|
83
83
|
],
|
|
@@ -88,9 +88,9 @@
|
|
|
88
88
|
]
|
|
89
89
|
},
|
|
90
90
|
"node_modules/@anthropic-ai/claude-agent-sdk-linux-arm64": {
|
|
91
|
-
"version": "0.3.
|
|
92
|
-
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-linux-arm64/-/claude-agent-sdk-linux-arm64-0.3.
|
|
93
|
-
"integrity": "sha512-
|
|
91
|
+
"version": "0.3.156",
|
|
92
|
+
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-linux-arm64/-/claude-agent-sdk-linux-arm64-0.3.156.tgz",
|
|
93
|
+
"integrity": "sha512-H0Nfd41iw5isto9uQI1FlVSZ0eaDttr8rBpJMR25oK/mj3egMO5EmZ6aAxeeUYSLn2mSU50HA5VNxlGUE118TQ==",
|
|
94
94
|
"cpu": [
|
|
95
95
|
"arm64"
|
|
96
96
|
],
|
|
@@ -101,9 +101,9 @@
|
|
|
101
101
|
]
|
|
102
102
|
},
|
|
103
103
|
"node_modules/@anthropic-ai/claude-agent-sdk-linux-arm64-musl": {
|
|
104
|
-
"version": "0.3.
|
|
105
|
-
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-linux-arm64-musl/-/claude-agent-sdk-linux-arm64-musl-0.3.
|
|
106
|
-
"integrity": "sha512-
|
|
104
|
+
"version": "0.3.156",
|
|
105
|
+
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-linux-arm64-musl/-/claude-agent-sdk-linux-arm64-musl-0.3.156.tgz",
|
|
106
|
+
"integrity": "sha512-R7KEVjxkR4rYgIQoHGBzwPdUJYxRTO8I4vHjRbMLH1eW4FS7BJvVs7ogfKR/NnHFBvMVqtC+l6jHLQv8bobUiw==",
|
|
107
107
|
"cpu": [
|
|
108
108
|
"arm64"
|
|
109
109
|
],
|
|
@@ -114,9 +114,9 @@
|
|
|
114
114
|
]
|
|
115
115
|
},
|
|
116
116
|
"node_modules/@anthropic-ai/claude-agent-sdk-linux-x64": {
|
|
117
|
-
"version": "0.3.
|
|
118
|
-
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-linux-x64/-/claude-agent-sdk-linux-x64-0.3.
|
|
119
|
-
"integrity": "sha512-
|
|
117
|
+
"version": "0.3.156",
|
|
118
|
+
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-linux-x64/-/claude-agent-sdk-linux-x64-0.3.156.tgz",
|
|
119
|
+
"integrity": "sha512-ymhrdlbWoYvTACUdaGdhrEv+ZMfwXLsf0BRLkr/IvY5aqybP7URzWmmZGOtDQpqkT/8xu/UCGqUYH3woJwUxfg==",
|
|
120
120
|
"cpu": [
|
|
121
121
|
"x64"
|
|
122
122
|
],
|
|
@@ -127,9 +127,9 @@
|
|
|
127
127
|
]
|
|
128
128
|
},
|
|
129
129
|
"node_modules/@anthropic-ai/claude-agent-sdk-linux-x64-musl": {
|
|
130
|
-
"version": "0.3.
|
|
131
|
-
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-linux-x64-musl/-/claude-agent-sdk-linux-x64-musl-0.3.
|
|
132
|
-
"integrity": "sha512
|
|
130
|
+
"version": "0.3.156",
|
|
131
|
+
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-linux-x64-musl/-/claude-agent-sdk-linux-x64-musl-0.3.156.tgz",
|
|
132
|
+
"integrity": "sha512-/Q6WUizI6a+hqZZ6ElwRU0PEuFhOoN4v6CuU35HHbiZ/7uaocGht4A8ZIgK1Fw6wOGtZzGLbc00CA1OU1Zg8EA==",
|
|
133
133
|
"cpu": [
|
|
134
134
|
"x64"
|
|
135
135
|
],
|
|
@@ -140,9 +140,9 @@
|
|
|
140
140
|
]
|
|
141
141
|
},
|
|
142
142
|
"node_modules/@anthropic-ai/claude-agent-sdk-win32-arm64": {
|
|
143
|
-
"version": "0.3.
|
|
144
|
-
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-win32-arm64/-/claude-agent-sdk-win32-arm64-0.3.
|
|
145
|
-
"integrity": "sha512-
|
|
143
|
+
"version": "0.3.156",
|
|
144
|
+
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-win32-arm64/-/claude-agent-sdk-win32-arm64-0.3.156.tgz",
|
|
145
|
+
"integrity": "sha512-5sAeNObQQrMy4NF9HwxewrMnU7mVxZDHh+/MfJVQSz0GSTvXQ6gOuRH8helMlfspoU6VOdekPxVLRooX/3foEw==",
|
|
146
146
|
"cpu": [
|
|
147
147
|
"arm64"
|
|
148
148
|
],
|
|
@@ -153,9 +153,9 @@
|
|
|
153
153
|
]
|
|
154
154
|
},
|
|
155
155
|
"node_modules/@anthropic-ai/claude-agent-sdk-win32-x64": {
|
|
156
|
-
"version": "0.3.
|
|
157
|
-
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-win32-x64/-/claude-agent-sdk-win32-x64-0.3.
|
|
158
|
-
"integrity": "sha512
|
|
156
|
+
"version": "0.3.156",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-win32-x64/-/claude-agent-sdk-win32-x64-0.3.156.tgz",
|
|
158
|
+
"integrity": "sha512-/PofeTWoiKgnWNSNk0wG4SsRn22GGLmnLhg2R94WcNhCRFOyOTmiZcYH2DBlWZBIRVTZDsSfa/Pl1DyPvYCGKw==",
|
|
159
159
|
"cpu": [
|
|
160
160
|
"x64"
|
|
161
161
|
],
|
|
@@ -166,9 +166,9 @@
|
|
|
166
166
|
]
|
|
167
167
|
},
|
|
168
168
|
"node_modules/@anthropic-ai/sdk": {
|
|
169
|
-
"version": "0.
|
|
170
|
-
"resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.
|
|
171
|
-
"integrity": "sha512-
|
|
169
|
+
"version": "0.100.1",
|
|
170
|
+
"resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.100.1.tgz",
|
|
171
|
+
"integrity": "sha512-RANcEe7LpiLczkKGOwoXOTuFdPhuubS0i4xaAKOMpcqc55YO0mukgxppV7eygx3DXNjxWT6RYOLPyOy0aIAmwg==",
|
|
172
172
|
"license": "MIT",
|
|
173
173
|
"dependencies": {
|
|
174
174
|
"json-schema-to-ts": "^3.1.1",
|
|
@@ -187,9 +187,9 @@
|
|
|
187
187
|
}
|
|
188
188
|
},
|
|
189
189
|
"node_modules/@babel/runtime": {
|
|
190
|
-
"version": "7.29.
|
|
191
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.
|
|
192
|
-
"integrity": "sha512-
|
|
190
|
+
"version": "7.29.7",
|
|
191
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
192
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
193
193
|
"license": "MIT",
|
|
194
194
|
"engines": {
|
|
195
195
|
"node": ">=6.9.0"
|
|
@@ -1196,9 +1196,9 @@
|
|
|
1196
1196
|
}
|
|
1197
1197
|
},
|
|
1198
1198
|
"node_modules/es-object-atoms": {
|
|
1199
|
-
"version": "1.1.
|
|
1200
|
-
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.
|
|
1201
|
-
"integrity": "sha512-
|
|
1199
|
+
"version": "1.1.2",
|
|
1200
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
|
|
1201
|
+
"integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
|
|
1202
1202
|
"license": "MIT",
|
|
1203
1203
|
"dependencies": {
|
|
1204
1204
|
"es-errors": "^1.3.0"
|
|
@@ -1285,9 +1285,9 @@
|
|
|
1285
1285
|
}
|
|
1286
1286
|
},
|
|
1287
1287
|
"node_modules/eventsource-parser": {
|
|
1288
|
-
"version": "3.0
|
|
1289
|
-
"resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.
|
|
1290
|
-
"integrity": "sha512-
|
|
1288
|
+
"version": "3.1.0",
|
|
1289
|
+
"resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.1.0.tgz",
|
|
1290
|
+
"integrity": "sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==",
|
|
1291
1291
|
"license": "MIT",
|
|
1292
1292
|
"engines": {
|
|
1293
1293
|
"node": ">=18.0.0"
|
|
@@ -1536,9 +1536,9 @@
|
|
|
1536
1536
|
}
|
|
1537
1537
|
},
|
|
1538
1538
|
"node_modules/hasown": {
|
|
1539
|
-
"version": "2.0.
|
|
1540
|
-
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.
|
|
1541
|
-
"integrity": "sha512-
|
|
1539
|
+
"version": "2.0.4",
|
|
1540
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
|
|
1541
|
+
"integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
|
|
1542
1542
|
"license": "MIT",
|
|
1543
1543
|
"dependencies": {
|
|
1544
1544
|
"function-bind": "^1.1.2"
|
|
@@ -2081,9 +2081,9 @@
|
|
|
2081
2081
|
}
|
|
2082
2082
|
},
|
|
2083
2083
|
"node_modules/streamx": {
|
|
2084
|
-
"version": "2.
|
|
2085
|
-
"resolved": "https://registry.npmjs.org/streamx/-/streamx-2.
|
|
2086
|
-
"integrity": "sha512-
|
|
2084
|
+
"version": "2.26.0",
|
|
2085
|
+
"resolved": "https://registry.npmjs.org/streamx/-/streamx-2.26.0.tgz",
|
|
2086
|
+
"integrity": "sha512-VvNG1K72Po/xwJzxZFnZ++Tbrv4lwSptsbkFuzXCJAYZvCK5nnxsvXU6ajqkv7chyiI1Y0YXq2Jh8Iy8Y7NF/A==",
|
|
2087
2087
|
"license": "MIT",
|
|
2088
2088
|
"dependencies": {
|
|
2089
2089
|
"events-universal": "^1.0.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/acpx",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.31-beta.2",
|
|
4
4
|
"description": "OpenClaw ACP runtime backend with plugin-owned session and transport management.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@agentclientprotocol/claude-agent-acp": "0.
|
|
11
|
+
"@agentclientprotocol/claude-agent-acp": "0.39.0",
|
|
12
12
|
"@zed-industries/codex-acp": "0.15.0",
|
|
13
13
|
"acpx": "0.10.0",
|
|
14
14
|
"zod": "4.4.3"
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"minHostVersion": ">=2026.4.25"
|
|
27
27
|
},
|
|
28
28
|
"compat": {
|
|
29
|
-
"pluginApi": ">=2026.5.
|
|
29
|
+
"pluginApi": ">=2026.5.31-beta.2"
|
|
30
30
|
},
|
|
31
31
|
"build": {
|
|
32
|
-
"openclawVersion": "2026.5.
|
|
32
|
+
"openclawVersion": "2026.5.31-beta.2",
|
|
33
33
|
"staticAssets": [
|
|
34
34
|
{
|
|
35
35
|
"source": "./src/runtime-internals/mcp-proxy.mjs",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"skills/**"
|
|
59
59
|
],
|
|
60
60
|
"peerDependencies": {
|
|
61
|
-
"openclaw": ">=2026.5.
|
|
61
|
+
"openclaw": ">=2026.5.31-beta.2"
|
|
62
62
|
},
|
|
63
63
|
"peerDependenciesMeta": {
|
|
64
64
|
"openclaw": {
|