@openclaw/acpx 2026.5.28 → 2026.5.30-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/index.js +1 -1
- package/dist/{register.runtime-D07L8fDT.js → register.runtime-L0KL5zS4.js} +1 -1
- package/dist/register.runtime.js +1 -1
- package/dist/{runtime-BaP1xg1D.js → runtime-CWN42s53.js} +5 -5
- package/dist/{service-BrT7jug3.js → service-CLaP4k7z.js} +2 -2
- package/npm-shrinkwrap.json +2 -2
- package/package.json +4 -4
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-L0KL5zS4.js";
|
|
2
2
|
import { tryDispatchAcpReplyHook } from "openclaw/plugin-sdk/acp-runtime-backend";
|
|
3
3
|
//#region extensions/acpx/index.ts
|
|
4
4
|
const plugin = {
|
|
@@ -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-CLaP4k7z.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-L0KL5zS4.js";
|
|
2
2
|
export { createAcpxRuntimeService };
|
|
@@ -143,7 +143,7 @@ function createResetAwareSessionStore(baseStore, params) {
|
|
|
143
143
|
const OPENCLAW_BRIDGE_EXECUTABLE = "openclaw";
|
|
144
144
|
const OPENCLAW_BRIDGE_SUBCOMMAND = "acp";
|
|
145
145
|
const CODEX_ACP_AGENT_ID = "codex";
|
|
146
|
-
const CODEX_ACP_OPENCLAW_PREFIX = "openai
|
|
146
|
+
const CODEX_ACP_OPENCLAW_PREFIX = "openai/";
|
|
147
147
|
const CODEX_ACP_REASONING_EFFORTS = new Set([
|
|
148
148
|
"low",
|
|
149
149
|
"medium",
|
|
@@ -241,7 +241,7 @@ function isClaudeAcpCommand(command) {
|
|
|
241
241
|
});
|
|
242
242
|
}
|
|
243
243
|
function failUnsupportedCodexAcpModel(rawModel, detail) {
|
|
244
|
-
throw new AcpRuntimeError("ACP_INVALID_RUNTIME_OPTION", detail ?? `Codex ACP model "${rawModel}" is not supported. Use openai
|
|
244
|
+
throw new AcpRuntimeError("ACP_INVALID_RUNTIME_OPTION", detail ?? `Codex ACP model "${rawModel}" is not supported. Use openai/<model> or <model>/<reasoning-effort>.`);
|
|
245
245
|
}
|
|
246
246
|
const SUPPORTED_RUNTIME_SESSION_MODES = new Set(["persistent", "oneshot"]);
|
|
247
247
|
const WIRE_TIMEOUT_CONFIG_KEYS = new Set(["timeout", "timeout_seconds"]);
|
|
@@ -264,12 +264,12 @@ function normalizeCodexAcpModelOverride(rawModel, rawThinking) {
|
|
|
264
264
|
const thinkingReasoningEffort = normalizeCodexAcpReasoningEffort(rawThinking);
|
|
265
265
|
if (!raw) return thinkingReasoningEffort ? { reasoningEffort: thinkingReasoningEffort } : void 0;
|
|
266
266
|
let value = raw;
|
|
267
|
-
if (value.toLowerCase().startsWith(CODEX_ACP_OPENCLAW_PREFIX)) value = value.slice(
|
|
267
|
+
if (value.toLowerCase().startsWith(CODEX_ACP_OPENCLAW_PREFIX)) value = value.slice(7);
|
|
268
268
|
const parts = value.split("/");
|
|
269
|
-
if (parts.length > 2) failUnsupportedCodexAcpModel(raw, `Codex ACP model "${raw}" is not supported. Use openai
|
|
269
|
+
if (parts.length > 2) failUnsupportedCodexAcpModel(raw, `Codex ACP model "${raw}" is not supported. Use openai/<model> or <model>/<reasoning-effort>.`);
|
|
270
270
|
const model = (parts[0] ?? "").trim();
|
|
271
271
|
const modelReasoningEffort = normalizeCodexAcpReasoningEffort(parts[1]);
|
|
272
|
-
if (!model) failUnsupportedCodexAcpModel(raw, `Codex ACP model "${raw}" is not supported. Use openai
|
|
272
|
+
if (!model) failUnsupportedCodexAcpModel(raw, `Codex ACP model "${raw}" is not supported. Use openai/<model> or <model>/<reasoning-effort>.`);
|
|
273
273
|
const reasoningEffort = thinkingReasoningEffort ?? modelReasoningEffort;
|
|
274
274
|
if (reasoningEffort && !CODEX_ACP_REASONING_EFFORTS.has(reasoningEffort)) failUnsupportedCodexAcpThinking(reasoningEffort);
|
|
275
275
|
return {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as createLazyAcpRuntimeProxy } from "./register.runtime-
|
|
1
|
+
import { n as createLazyAcpRuntimeProxy } from "./register.runtime-L0KL5zS4.js";
|
|
2
2
|
import { registerAcpRuntimeBackend, unregisterAcpRuntimeBackend } from "./runtime-api.js";
|
|
3
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-CAUlLOkM.js";
|
|
4
4
|
import { createRequire } from "node:module";
|
|
@@ -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-CWN42s53.js");
|
|
806
806
|
return runtimeModulePromise;
|
|
807
807
|
}
|
|
808
808
|
function resolveAcpxTimerTimeoutMs(timeoutSeconds) {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/acpx",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.30-beta.1",
|
|
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.30-beta.1",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@agentclientprotocol/claude-agent-acp": "0.37.0",
|
|
12
12
|
"@zed-industries/codex-acp": "0.15.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/acpx",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.30-beta.1",
|
|
4
4
|
"description": "OpenClaw ACP runtime backend with plugin-owned session and transport management.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"minHostVersion": ">=2026.4.25"
|
|
27
27
|
},
|
|
28
28
|
"compat": {
|
|
29
|
-
"pluginApi": ">=2026.5.
|
|
29
|
+
"pluginApi": ">=2026.5.30-beta.1"
|
|
30
30
|
},
|
|
31
31
|
"build": {
|
|
32
|
-
"openclawVersion": "2026.5.
|
|
32
|
+
"openclawVersion": "2026.5.30-beta.1",
|
|
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.30-beta.1"
|
|
62
62
|
},
|
|
63
63
|
"peerDependenciesMeta": {
|
|
64
64
|
"openclaw": {
|