@openclaw/acpx 2026.7.1-beta.1 → 2026.7.1-beta.4

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.
@@ -1,6 +1,7 @@
1
1
  import { c as normalizeAcpxProcessLeaseFile, d as ACPX_GATEWAY_INSTANCE_KEY, f as ACPX_GATEWAY_INSTANCE_NAMESPACE, h as normalizeAcpxGatewayInstanceRecord, l as openAcpxProcessLeaseStateStore, m as ACPX_LEGACY_PROCESS_LEASE_FILE, p as ACPX_LEGACY_GATEWAY_INSTANCE_FILE, s as normalizeAcpxProcessLease } from "./process-lease-DiKkFj6F.js";
2
2
  import fs from "node:fs/promises";
3
3
  import path from "node:path";
4
+ import { archiveLegacyStateSource } from "openclaw/plugin-sdk/runtime-doctor";
4
5
  //#region extensions/acpx/doctor-contract-api.ts
5
6
  function resolveLegacyGatewayInstancePath(stateDir) {
6
7
  return path.join(stateDir, ACPX_LEGACY_GATEWAY_INSTANCE_FILE);
@@ -8,13 +9,6 @@ function resolveLegacyGatewayInstancePath(stateDir) {
8
9
  function resolveLegacyProcessLeasePath(stateDir) {
9
10
  return path.join(stateDir, "acpx", ACPX_LEGACY_PROCESS_LEASE_FILE);
10
11
  }
11
- async function fileExists(filePath) {
12
- try {
13
- return (await fs.stat(filePath)).isFile();
14
- } catch {
15
- return false;
16
- }
17
- }
18
12
  async function readLegacyGatewayInstanceId(filePath) {
19
13
  try {
20
14
  return (await fs.readFile(filePath, "utf8")).trim() || null;
@@ -29,19 +23,6 @@ async function readLegacyOpenProcessLeases(filePath) {
29
23
  return [];
30
24
  }
31
25
  }
32
- async function archiveLegacySource(params) {
33
- const archivedPath = `${params.filePath}.migrated`;
34
- if (await fileExists(archivedPath)) {
35
- params.warnings.push(`Left migrated ACPX ${params.label} source in place because ${archivedPath} already exists`);
36
- return;
37
- }
38
- try {
39
- await fs.rename(params.filePath, archivedPath);
40
- params.changes.push(`Archived ACPX ${params.label} legacy source -> ${archivedPath}`);
41
- } catch (err) {
42
- params.warnings.push(`Failed archiving ACPX ${params.label} legacy source: ${String(err)}`);
43
- }
44
- }
45
26
  const stateMigrations = [{
46
27
  id: "acpx-runtime-state-to-plugin-state",
47
28
  label: "ACPX runtime state",
@@ -92,9 +73,9 @@ const stateMigrations = [{
92
73
  });
93
74
  changes.push("Migrated ACPX gateway instance id -> plugin state");
94
75
  } else if (gatewayInstanceId && existingGateway?.instanceId !== gatewayInstanceId) warnings.push("Skipped ACPX gateway instance id import because plugin state already differs");
95
- if (gatewayInstanceId) await archiveLegacySource({
76
+ if (gatewayInstanceId) await archiveLegacyStateSource({
96
77
  filePath: gatewayInstancePath,
97
- label: "gateway-instance-id",
78
+ label: "ACPX gateway-instance-id",
98
79
  changes,
99
80
  warnings
100
81
  });
@@ -104,9 +85,9 @@ const stateMigrations = [{
104
85
  for (const lease of openLeases) if (await processLeaseStore.registerIfAbsent(lease.leaseId, lease)) imported++;
105
86
  else alreadyPresent++;
106
87
  changes.push(`Migrated ACPX process leases -> plugin state (${imported} imported, ${alreadyPresent} already present)`);
107
- await archiveLegacySource({
88
+ await archiveLegacyStateSource({
108
89
  filePath: processLeasePath,
109
- label: "process-leases",
90
+ label: "ACPX process-leases",
110
91
  changes,
111
92
  warnings
112
93
  });
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { t as createAcpxRuntimeService } from "./register.runtime-Bq02UtOW.js";
1
+ import { t as createAcpxRuntimeService } from "./register.runtime-Yz704dK5.js";
2
2
  import { tryDispatchAcpReplyHook } from "openclaw/plugin-sdk/acp-runtime-backend";
3
3
  //#region extensions/acpx/index.ts
4
4
  /**
@@ -104,21 +104,48 @@ function main() {
104
104
  }
105
105
 
106
106
  const input = createInterface({ input: process.stdin });
107
+ let exiting = false;
108
+
109
+ const exitWithError = (error) => {
110
+ if (exiting) {
111
+ return;
112
+ }
113
+ exiting = true;
114
+ input.close();
115
+ child.kill();
116
+ process.stderr.write(`${formatErrorMessage(error)}\n`);
117
+ process.exit(1);
118
+ };
119
+
120
+ child.stdin.on("error", exitWithError);
121
+ process.stdout.on("error", exitWithError);
122
+
107
123
  input.on("line", (line) => {
108
- child.stdin.write(`${rewriteLine(line, mcpServers)}\n`);
124
+ if (exiting) {
125
+ return;
126
+ }
127
+ child.stdin.write(`${rewriteLine(line, mcpServers)}\n`, (error) => {
128
+ if (error) {
129
+ exitWithError(error);
130
+ }
131
+ });
109
132
  });
110
133
  input.on("close", () => {
134
+ if (exiting || child.stdin.destroyed || child.stdin.writableEnded) {
135
+ return;
136
+ }
111
137
  child.stdin.end();
112
138
  });
113
139
 
114
140
  child.stdout.pipe(process.stdout);
115
141
 
116
- child.on("error", (error) => {
117
- process.stderr.write(`${formatErrorMessage(error)}\n`);
118
- process.exit(1);
119
- });
142
+ child.on("error", exitWithError);
120
143
 
121
144
  child.on("close", (code, signal) => {
145
+ if (exiting) {
146
+ return;
147
+ }
148
+ exiting = true;
122
149
  if (signal) {
123
150
  process.kill(process.pid, signal);
124
151
  return;
@@ -1,12 +1,12 @@
1
1
  import "./process-lease-DiKkFj6F.js";
2
2
  import { createRequire } from "node:module";
3
+ import { formatPluginConfigIssue } from "openclaw/plugin-sdk/extension-shared";
3
4
  import path from "node:path";
4
5
  import { normalizeLowercaseStringOrEmpty } from "openclaw/plugin-sdk/string-coerce-runtime";
5
6
  import { execFile } from "node:child_process";
6
7
  import { promisify } from "node:util";
7
- import fsSync from "node:fs";
8
+ import fs from "node:fs";
8
9
  import { fileURLToPath } from "node:url";
9
- import { formatPluginConfigIssue } from "openclaw/plugin-sdk/extension-shared";
10
10
  import { z } from "zod";
11
11
  //#region extensions/acpx/src/command-line.ts
12
12
  /**
@@ -101,7 +101,7 @@ const ACPX_PLUGIN_TOOLS_MCP_SERVER_NAME = "openclaw-plugin-tools";
101
101
  const ACPX_OPENCLAW_TOOLS_MCP_SERVER_NAME = "openclaw-tools";
102
102
  const requireFromHere$1 = createRequire(import.meta.url);
103
103
  function isAcpxPluginRoot(dir) {
104
- return fsSync.existsSync(path.join(dir, "openclaw.plugin.json")) && fsSync.existsSync(path.join(dir, "package.json"));
104
+ return fs.existsSync(path.join(dir, "openclaw.plugin.json")) && fs.existsSync(path.join(dir, "package.json"));
105
105
  }
106
106
  function resolveNearestAcpxPluginRoot(moduleUrl) {
107
107
  let cursor = path.dirname(fileURLToPath(moduleUrl));
@@ -183,7 +183,7 @@ function shellQuoteCommandArg(arg) {
183
183
  function resolvePluginToolsMcpServerConfig(moduleUrl = import.meta.url) {
184
184
  const openClawRoot = resolveOpenClawRoot(resolveAcpxPluginRoot(moduleUrl));
185
185
  const distEntry = path.join(openClawRoot, "dist", "mcp", "plugin-tools-serve.js");
186
- if (fsSync.existsSync(distEntry)) return {
186
+ if (fs.existsSync(distEntry)) return {
187
187
  command: process.execPath,
188
188
  args: [distEntry]
189
189
  };
@@ -200,7 +200,7 @@ function resolvePluginToolsMcpServerConfig(moduleUrl = import.meta.url) {
200
200
  function resolveOpenClawToolsMcpServerConfig(moduleUrl = import.meta.url) {
201
201
  const openClawRoot = resolveOpenClawRoot(resolveAcpxPluginRoot(moduleUrl));
202
202
  const distEntry = path.join(openClawRoot, "dist", "mcp", "openclaw-tools-serve.js");
203
- if (fsSync.existsSync(distEntry)) return {
203
+ if (fs.existsSync(distEntry)) return {
204
204
  command: process.execPath,
205
205
  args: [distEntry]
206
206
  };
@@ -284,7 +284,7 @@ function resolveAcpxPluginConfig(params) {
284
284
  */
285
285
  const execFileAsync = promisify(execFile);
286
286
  const requireFromHere = createRequire(import.meta.url);
287
- const GENERATED_WRAPPER_BASENAMES = new Set(["codex-acp-wrapper.mjs", "claude-agent-acp-wrapper.mjs"]);
287
+ const GENERATED_WRAPPER_BASENAMES = /* @__PURE__ */ new Set(["codex-acp-wrapper.mjs", "claude-agent-acp-wrapper.mjs"]);
288
288
  const OPENCLAW_PLUGIN_DEPS_MARKER = "/plugin-runtime-deps/";
289
289
  const OWNED_ACP_PACKAGE_NAMES = [
290
290
  "@zed-industries/codex-acp",
@@ -1,16 +1,13 @@
1
1
  import { getAcpRuntimeBackend, registerAcpRuntimeBackend, unregisterAcpRuntimeBackend } from "openclaw/plugin-sdk/acp-runtime-backend";
2
+ import { createLazyRuntimeModule } from "openclaw/plugin-sdk/lazy-runtime";
3
+ import { createDeferred } from "openclaw/plugin-sdk/extension-shared";
2
4
  //#region extensions/acpx/src/runtime-turn.ts
3
- function createDeferredResult() {
4
- let resolve;
5
- let reject;
6
- return {
7
- promise: new Promise((resolvePromise, rejectPromise) => {
8
- resolve = resolvePromise;
9
- reject = rejectPromise;
10
- }),
11
- resolve,
12
- reject
13
- };
5
+ /**
6
+ * ACPX turn adapters. Modern runtimes can expose startTurn directly; legacy
7
+ * runtimes that only stream runTurn events are adapted to the newer contract.
8
+ */
9
+ function isCancellationStopReason(stopReason) {
10
+ return stopReason === "cancel" || stopReason === "cancelled" || stopReason === "manual-cancel";
14
11
  }
15
12
  var LegacyRunTurnEventQueue = class {
16
13
  constructor() {
@@ -62,7 +59,7 @@ var LegacyRunTurnEventQueue = class {
62
59
  }
63
60
  };
64
61
  function legacyRunTurnAsStartTurn(runtime, input) {
65
- const result = createDeferredResult();
62
+ const result = createDeferred();
66
63
  result.promise.catch(() => {});
67
64
  const queue = new LegacyRunTurnEventQueue();
68
65
  let resultSettled = false;
@@ -76,7 +73,7 @@ function legacyRunTurnAsStartTurn(runtime, input) {
76
73
  for await (const event of runtime.runTurn(input)) {
77
74
  if (event.type === "done") {
78
75
  settleResult({
79
- status: "completed",
76
+ status: event.status ?? (isCancellationStopReason(event.stopReason) ? "cancelled" : "completed"),
80
77
  ...event.stopReason ? { stopReason: event.stopReason } : {}
81
78
  });
82
79
  continue;
@@ -203,11 +200,7 @@ function createLazyAcpRuntimeProxy(resolveRuntime) {
203
200
  * immediately, then imports the heavier service only when a session needs it.
204
201
  */
205
202
  const ACPX_BACKEND_ID = "acpx";
206
- let serviceModulePromise = null;
207
- function loadServiceModule() {
208
- serviceModulePromise ??= import("./service-CfrXZbVJ.js");
209
- return serviceModulePromise;
210
- }
203
+ const loadServiceModule = createLazyRuntimeModule(() => import("./service-CzJr7Koj.js"));
211
204
  async function startRealService(state) {
212
205
  if (state.realRuntime) return state.realRuntime;
213
206
  if (!state.ctx) throw new Error("ACPX runtime service is not started");
@@ -1,2 +1,2 @@
1
- import { t as createAcpxRuntimeService } from "./register.runtime-Bq02UtOW.js";
1
+ import { t as createAcpxRuntimeService } from "./register.runtime-Yz704dK5.js";
2
2
  export { createAcpxRuntimeService };
@@ -1,6 +1,6 @@
1
1
  import { i as createAcpxProcessLeaseId, o as hashAcpxProcessCommand, u as withAcpxLeaseEnvironment } from "./process-lease-DiKkFj6F.js";
2
2
  import { AcpRuntimeError } from "./runtime-api.js";
3
- import { c as splitCommandParts, n as isOpenClawLeaseAwareAcpxProcessCommand, t as cleanupOpenClawOwnedAcpxProcessTree } from "./process-reaper-Dv_iMcOo.js";
3
+ import { c as splitCommandParts, n as isOpenClawLeaseAwareAcpxProcessCommand, t as cleanupOpenClawOwnedAcpxProcessTree } from "./process-reaper-cncoDfwV.js";
4
4
  import fs from "node:fs/promises";
5
5
  import path, { resolve } from "node:path";
6
6
  import { normalizeStringEntries } from "openclaw/plugin-sdk/string-coerce-runtime";
@@ -164,13 +164,13 @@ const OPENCLAW_BRIDGE_SUBCOMMAND = "acp";
164
164
  const CODEX_ACP_AGENT_ID = "codex";
165
165
  const CODEX_ACP_OPENCLAW_PREFIX = "openai/";
166
166
  const CLAUDE_ACP_OPENCLAW_PREFIX = "anthropic/";
167
- const CODEX_ACP_REASONING_EFFORTS = new Set([
167
+ const CODEX_ACP_REASONING_EFFORTS = /* @__PURE__ */ new Set([
168
168
  "low",
169
169
  "medium",
170
170
  "high",
171
171
  "xhigh"
172
172
  ]);
173
- const CODEX_ACP_THINKING_ALIASES = new Map([
173
+ const CODEX_ACP_THINKING_ALIASES = /* @__PURE__ */ new Map([
174
174
  ["off", void 0],
175
175
  ["minimal", "low"],
176
176
  ["low", "low"],
@@ -263,8 +263,8 @@ function isClaudeAcpCommand(command) {
263
263
  function failUnsupportedCodexAcpModel(rawModel, detail) {
264
264
  throw new AcpRuntimeError("ACP_INVALID_RUNTIME_OPTION", detail ?? `Codex ACP model "${rawModel}" is not supported. Use openai/<model> or <model>/<reasoning-effort>.`);
265
265
  }
266
- const SUPPORTED_RUNTIME_SESSION_MODES = new Set(["persistent", "oneshot"]);
267
- const WIRE_TIMEOUT_CONFIG_KEYS = new Set(["timeout", "timeout_seconds"]);
266
+ const SUPPORTED_RUNTIME_SESSION_MODES = /* @__PURE__ */ new Set(["persistent", "oneshot"]);
267
+ const WIRE_TIMEOUT_CONFIG_KEYS = /* @__PURE__ */ new Set(["timeout", "timeout_seconds"]);
268
268
  function assertSupportedRuntimeSessionMode(mode) {
269
269
  if (typeof mode === "string" && SUPPORTED_RUNTIME_SESSION_MODES.has(mode)) return;
270
270
  const supported = Array.from(SUPPORTED_RUNTIME_SESSION_MODES).join(", ");
@@ -1,14 +1,15 @@
1
- import { n as createLazyAcpRuntimeProxy } from "./register.runtime-Bq02UtOW.js";
1
+ import { n as createLazyAcpRuntimeProxy } from "./register.runtime-Yz704dK5.js";
2
2
  import { a as createAcpxProcessLeaseStore, d as ACPX_GATEWAY_INSTANCE_KEY, f as ACPX_GATEWAY_INSTANCE_NAMESPACE, h as normalizeAcpxGatewayInstanceRecord, l as openAcpxProcessLeaseStateStore, n as OPENCLAW_ACPX_LEASE_ID_ENV, r as OPENCLAW_GATEWAY_INSTANCE_ID_ARG, t as OPENCLAW_ACPX_LEASE_ID_ARG } from "./process-lease-DiKkFj6F.js";
3
3
  import { registerAcpRuntimeBackend, unregisterAcpRuntimeBackend } from "./runtime-api.js";
4
- import { a as resolveAcpxPluginRoot, c as splitCommandParts, i as resolveAcpxPluginConfig, o as toAcpMcpServers, r as reapStaleOpenClawOwnedAcpxOrphans, s as quoteCommandPart, t as cleanupOpenClawOwnedAcpxProcessTree } from "./process-reaper-Dv_iMcOo.js";
4
+ import { a as resolveAcpxPluginRoot, c as splitCommandParts, i as resolveAcpxPluginConfig, o as toAcpMcpServers, r as reapStaleOpenClawOwnedAcpxOrphans, s as quoteCommandPart, t as cleanupOpenClawOwnedAcpxProcessTree } from "./process-reaper-cncoDfwV.js";
5
5
  import { createRequire } from "node:module";
6
+ import { createLazyRuntimeModule } from "openclaw/plugin-sdk/lazy-runtime";
6
7
  import fs from "node:fs/promises";
7
8
  import path from "node:path";
8
9
  import { randomUUID } from "node:crypto";
9
10
  import { finiteSecondsToTimerSafeMilliseconds } from "openclaw/plugin-sdk/number-runtime";
10
11
  import { inspect } from "node:util";
11
- import fsSync from "node:fs";
12
+ import fs$1 from "node:fs";
12
13
  import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";
13
14
  import os from "node:os";
14
15
  import { readJsonFileWithFallback } from "openclaw/plugin-sdk/json-store";
@@ -133,13 +134,13 @@ function extractTrustedCodexProjectPaths(configToml) {
133
134
  }
134
135
  return Array.from(trusted);
135
136
  }
136
- const INHERITED_TOP_LEVEL_CODEX_CONFIG_KEYS = new Set([
137
+ const INHERITED_TOP_LEVEL_CODEX_CONFIG_KEYS = /* @__PURE__ */ new Set([
137
138
  "model",
138
139
  "model_provider",
139
140
  "model_reasoning_effort",
140
141
  "sandbox_mode"
141
142
  ]);
142
- const INHERITED_MODEL_PROVIDER_CONFIG_KEYS = new Set([
143
+ const INHERITED_MODEL_PROVIDER_CONFIG_KEYS = /* @__PURE__ */ new Set([
143
144
  "name",
144
145
  "base_url",
145
146
  "wire_api",
@@ -228,7 +229,7 @@ const RUN_CONFIGURED_COMMAND_SENTINEL = "--openclaw-run-configured";
228
229
  const requireFromHere = createRequire(import.meta.url);
229
230
  function readSelfManifest() {
230
231
  const manifestPath = path.join(resolveAcpxPluginRoot(import.meta.url), "package.json");
231
- return JSON.parse(fsSync.readFileSync(manifestPath, "utf8"));
232
+ return JSON.parse(fs$1.readFileSync(manifestPath, "utf8"));
232
233
  }
233
234
  function readManifestDependencyVersion(packageName) {
234
235
  const version = readSelfManifest().dependencies?.[packageName];
@@ -851,11 +852,7 @@ async function prepareAcpxCodexAuthConfig(params) {
851
852
  const ENABLE_STARTUP_PROBE_ENV = "OPENCLAW_ACPX_RUNTIME_STARTUP_PROBE";
852
853
  const SKIP_RUNTIME_PROBE_ENV = "OPENCLAW_SKIP_ACPX_RUNTIME_PROBE";
853
854
  const ACPX_BACKEND_ID = "acpx";
854
- let runtimeModulePromise = null;
855
- function loadRuntimeModule() {
856
- runtimeModulePromise ??= import("./runtime-CynB8RsZ.js");
857
- return runtimeModulePromise;
858
- }
855
+ const loadRuntimeModule = createLazyRuntimeModule(() => import("./runtime-WjNm2DKO.js"));
859
856
  /** Convert ACPX timeout seconds into timer-safe milliseconds. */
860
857
  function resolveAcpxTimerTimeoutMs(timeoutSeconds) {
861
858
  if (timeoutSeconds === void 0) return;
@@ -1,59 +1,62 @@
1
1
  {
2
2
  "name": "@openclaw/acpx",
3
- "version": "2026.7.1-beta.1",
3
+ "version": "2026.7.1-beta.4",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@openclaw/acpx",
9
- "version": "2026.7.1-beta.1",
9
+ "version": "2026.7.1-beta.4",
10
10
  "dependencies": {
11
- "@agentclientprotocol/claude-agent-acp": "0.39.0",
12
- "@zed-industries/codex-acp": "0.15.0",
11
+ "@agentclientprotocol/claude-agent-acp": "0.55.0",
12
+ "@zed-industries/codex-acp": "0.16.0",
13
13
  "acpx": "0.11.2",
14
14
  "zod": "4.4.3"
15
15
  }
16
16
  },
17
17
  "node_modules/@agentclientprotocol/claude-agent-acp": {
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==",
18
+ "version": "0.55.0",
19
+ "resolved": "https://registry.npmjs.org/@agentclientprotocol/claude-agent-acp/-/claude-agent-acp-0.55.0.tgz",
20
+ "integrity": "sha512-zZ4EpT6OppURh3lrTTvQR42+ggPi5Q42TC7Nig+Vt0RGBAmw73xAnM6W5BpdNRL7VcT/2aRndV0Z7fuGrruMGA==",
21
21
  "license": "Apache-2.0",
22
22
  "dependencies": {
23
- "@agentclientprotocol/sdk": "0.22.1",
24
- "@anthropic-ai/claude-agent-sdk": "0.3.156",
23
+ "@agentclientprotocol/sdk": "1.1.0",
24
+ "@anthropic-ai/claude-agent-sdk": "0.3.198",
25
25
  "zod": "^3.25.0 || ^4.0.0"
26
26
  },
27
27
  "bin": {
28
28
  "claude-agent-acp": "dist/index.js"
29
+ },
30
+ "engines": {
31
+ "node": ">=22"
29
32
  }
30
33
  },
31
34
  "node_modules/@agentclientprotocol/sdk": {
32
- "version": "0.22.1",
33
- "resolved": "https://registry.npmjs.org/@agentclientprotocol/sdk/-/sdk-0.22.1.tgz",
34
- "integrity": "sha512-DfqXtl/8gO9NImq094MTaCXEU2vkhh6v7q/kT+9UjZxUqj8hYaya2OjLVIqn16MzNHcXEpShTR2RIauLSYeDQQ==",
35
+ "version": "1.1.0",
36
+ "resolved": "https://registry.npmjs.org/@agentclientprotocol/sdk/-/sdk-1.1.0.tgz",
37
+ "integrity": "sha512-NT2KqphUJ3w6EksUL51ZhJgIYgq/ZLGcBPkyMKgRSO5PMVwe9DnKKX+Htnvk6KHh6dUuh34UHK4gKp+4te1Mdg==",
35
38
  "license": "Apache-2.0",
36
39
  "peerDependencies": {
37
40
  "zod": "^3.25.0 || ^4.0.0"
38
41
  }
39
42
  },
40
43
  "node_modules/@anthropic-ai/claude-agent-sdk": {
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
+ "version": "0.3.198",
45
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk/-/claude-agent-sdk-0.3.198.tgz",
46
+ "integrity": "sha512-xt469sSCyclTPtzpLAg0Aschy665GiRMgZKabSmESbGUA5/H56HcILVOiFxclXswkeMUk2fQxfHJUY9UZfiTnA==",
44
47
  "license": "SEE LICENSE IN README.md",
45
48
  "engines": {
46
49
  "node": ">=18.0.0"
47
50
  },
48
51
  "optionalDependencies": {
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"
52
+ "@anthropic-ai/claude-agent-sdk-darwin-arm64": "0.3.198",
53
+ "@anthropic-ai/claude-agent-sdk-darwin-x64": "0.3.198",
54
+ "@anthropic-ai/claude-agent-sdk-linux-arm64": "0.3.198",
55
+ "@anthropic-ai/claude-agent-sdk-linux-arm64-musl": "0.3.198",
56
+ "@anthropic-ai/claude-agent-sdk-linux-x64": "0.3.198",
57
+ "@anthropic-ai/claude-agent-sdk-linux-x64-musl": "0.3.198",
58
+ "@anthropic-ai/claude-agent-sdk-win32-arm64": "0.3.198",
59
+ "@anthropic-ai/claude-agent-sdk-win32-x64": "0.3.198"
57
60
  },
58
61
  "peerDependencies": {
59
62
  "@anthropic-ai/sdk": ">=0.93.0",
@@ -62,9 +65,9 @@
62
65
  }
63
66
  },
64
67
  "node_modules/@anthropic-ai/claude-agent-sdk-darwin-arm64": {
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
+ "version": "0.3.198",
69
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-darwin-arm64/-/claude-agent-sdk-darwin-arm64-0.3.198.tgz",
70
+ "integrity": "sha512-ZmiAybQKIKcP1qEAE/vfXvfxtKxG9CnJn98QTXC5Zxiwuy7Mllx2ALXh9dfmsf0V87CGEodlZQmMgUJotNIsUw==",
68
71
  "cpu": [
69
72
  "arm64"
70
73
  ],
@@ -75,9 +78,9 @@
75
78
  ]
76
79
  },
77
80
  "node_modules/@anthropic-ai/claude-agent-sdk-darwin-x64": {
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
+ "version": "0.3.198",
82
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-darwin-x64/-/claude-agent-sdk-darwin-x64-0.3.198.tgz",
83
+ "integrity": "sha512-XwH5vgN46WSwg8aC1OagNofnJpV/G1ciEu118GEKer8ZhVkq/dvK/DqShxMkb6r1jV7u5IJ7zPXu9uKliyNJAw==",
81
84
  "cpu": [
82
85
  "x64"
83
86
  ],
@@ -88,9 +91,9 @@
88
91
  ]
89
92
  },
90
93
  "node_modules/@anthropic-ai/claude-agent-sdk-linux-arm64": {
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
+ "version": "0.3.198",
95
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-linux-arm64/-/claude-agent-sdk-linux-arm64-0.3.198.tgz",
96
+ "integrity": "sha512-qmz8dxEtDIlKntU5qYe0R4aWTxTue5S7zIQknatLX7aJ6HN/nq1aCNXWn5smTH2FViBkUPPR+sCIsNwSk6AT6Q==",
94
97
  "cpu": [
95
98
  "arm64"
96
99
  ],
@@ -101,9 +104,9 @@
101
104
  ]
102
105
  },
103
106
  "node_modules/@anthropic-ai/claude-agent-sdk-linux-arm64-musl": {
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
+ "version": "0.3.198",
108
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-linux-arm64-musl/-/claude-agent-sdk-linux-arm64-musl-0.3.198.tgz",
109
+ "integrity": "sha512-Q7lKVNjIrUQ2B/AR77OvRf0zeOdEjonFVaR9FYrrwtzGeEqum69WSht5nM7Y7el3wjbNi0/eV0QTUM0DlsTEfw==",
107
110
  "cpu": [
108
111
  "arm64"
109
112
  ],
@@ -114,9 +117,9 @@
114
117
  ]
115
118
  },
116
119
  "node_modules/@anthropic-ai/claude-agent-sdk-linux-x64": {
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
+ "version": "0.3.198",
121
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-linux-x64/-/claude-agent-sdk-linux-x64-0.3.198.tgz",
122
+ "integrity": "sha512-Zqxyz2AT1UM5WlOOoLJhLssZDgZo8rBK5ku6daveK12zp+UTJGZhGsjFghz1/ASxH08KqOTbUePNTORnPhHAEQ==",
120
123
  "cpu": [
121
124
  "x64"
122
125
  ],
@@ -127,9 +130,9 @@
127
130
  ]
128
131
  },
129
132
  "node_modules/@anthropic-ai/claude-agent-sdk-linux-x64-musl": {
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
+ "version": "0.3.198",
134
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-linux-x64-musl/-/claude-agent-sdk-linux-x64-musl-0.3.198.tgz",
135
+ "integrity": "sha512-h1SrWVIMjLInYNPlf+TxXuKTOdoiOfJLBSoQG97315Z2Nh0IpBfqWExlqYTtPCgKE7q2iga31U283QfHpIDlSQ==",
133
136
  "cpu": [
134
137
  "x64"
135
138
  ],
@@ -140,9 +143,9 @@
140
143
  ]
141
144
  },
142
145
  "node_modules/@anthropic-ai/claude-agent-sdk-win32-arm64": {
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
+ "version": "0.3.198",
147
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-win32-arm64/-/claude-agent-sdk-win32-arm64-0.3.198.tgz",
148
+ "integrity": "sha512-mjIHf1HFiRuXefewWTaNZFlTZlCaEt/xsRjc1nSTCEEpFolZayVhrDKz+O2QFVcDtPl8x8GeYSL0kiikg1DZjQ==",
146
149
  "cpu": [
147
150
  "arm64"
148
151
  ],
@@ -153,9 +156,9 @@
153
156
  ]
154
157
  },
155
158
  "node_modules/@anthropic-ai/claude-agent-sdk-win32-x64": {
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
+ "version": "0.3.198",
160
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk-win32-x64/-/claude-agent-sdk-win32-x64-0.3.198.tgz",
161
+ "integrity": "sha512-y3HLuCCz1kDwUrhd6OnqO+d5BUpTFSzNUsPT9kf3r1vk9HYKF+eMC9eIlcOhiW2kX491kxEvuEOfqgIkGx15cg==",
159
162
  "cpu": [
160
163
  "x64"
161
164
  ],
@@ -166,9 +169,9 @@
166
169
  ]
167
170
  },
168
171
  "node_modules/@anthropic-ai/sdk": {
169
- "version": "0.100.1",
170
- "resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.100.1.tgz",
171
- "integrity": "sha512-RANcEe7LpiLczkKGOwoXOTuFdPhuubS0i4xaAKOMpcqc55YO0mukgxppV7eygx3DXNjxWT6RYOLPyOy0aIAmwg==",
172
+ "version": "0.109.1",
173
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.109.1.tgz",
174
+ "integrity": "sha512-q9OnEKLr5H9nxSuXdgDgJhxfYMiE+AaUEBze2Gk91UcaaLnsN+Lx5fbCYywiqurU/APLdwv23x03Wm6WN3EBsg==",
172
175
  "license": "MIT",
173
176
  "dependencies": {
174
177
  "json-schema-to-ts": "^3.1.1",
@@ -196,9 +199,9 @@
196
199
  }
197
200
  },
198
201
  "node_modules/@clack/core": {
199
- "version": "1.3.1",
200
- "resolved": "https://registry.npmjs.org/@clack/core/-/core-1.3.1.tgz",
201
- "integrity": "sha512-fT1qHVGAag4IEkrupZ6lRRbNCs1vS9P01KB/sG8zKgvUztbYtFBtQpjSITNwooDZ83tpsPzP0mRNs1/KVszCRA==",
202
+ "version": "1.4.2",
203
+ "resolved": "https://registry.npmjs.org/@clack/core/-/core-1.4.2.tgz",
204
+ "integrity": "sha512-0Ty/1Gfm+Kb07sXcuESjyKfwEhSy4Ns1AgeEisHb/bDY5fWme0tTeTkU14T1Gmcs17YIjB/teiDe4uaCghbYqQ==",
202
205
  "license": "MIT",
203
206
  "dependencies": {
204
207
  "fast-wrap-ansi": "^0.2.0",
@@ -209,12 +212,12 @@
209
212
  }
210
213
  },
211
214
  "node_modules/@clack/prompts": {
212
- "version": "1.4.0",
213
- "resolved": "https://registry.npmjs.org/@clack/prompts/-/prompts-1.4.0.tgz",
214
- "integrity": "sha512-S0My7XPGIgpRWMDG8uRqalbgT+a6FmCUdOW+HaIOVVpUPHOb7RrpvjTjiODadKp06fsrVDJZlIzc6yCTp4AnxA==",
215
+ "version": "1.6.0",
216
+ "resolved": "https://registry.npmjs.org/@clack/prompts/-/prompts-1.6.0.tgz",
217
+ "integrity": "sha512-EYlRokl8szrP9Z25qT5aepMdBjzBvHF9ZEhzIiUBc9guz/T31EqRgvD0QSgZcpE93xiwrr+OkB4nz0BZyF6fSA==",
215
218
  "license": "MIT",
216
219
  "dependencies": {
217
- "@clack/core": "1.3.1",
220
+ "@clack/core": "1.4.2",
218
221
  "fast-string-width": "^3.0.2",
219
222
  "fast-wrap-ansi": "^0.2.0",
220
223
  "sisteransi": "^1.0.5"
@@ -698,31 +701,29 @@
698
701
  "license": "MIT"
699
702
  },
700
703
  "node_modules/@zed-industries/codex-acp": {
701
- "version": "0.15.0",
702
- "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp/-/codex-acp-0.15.0.tgz",
703
- "integrity": "sha512-eAv7sGBeiYrYkOulF729nrM51szS7WIhBtugRj5wWq6csRKZUhAZfoUZlF8xUWdHPtOIzd/eT6MNG6gMHu6z0w==",
704
- "deprecated": "This package has been replaced by @agentclientprotocol/codex-acp. Please migrate to continue receiving updates.",
704
+ "version": "0.16.0",
705
+ "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp/-/codex-acp-0.16.0.tgz",
706
+ "integrity": "sha512-XKzqztT5R8Wg1BVFnk6/U4JVx5GNUaZgxpf9gP2Cw6BsknvJWh3aefcAGZQljgdMivRqczjNKYL4F6H65dc5vA==",
705
707
  "license": "Apache-2.0",
706
708
  "bin": {
707
709
  "codex-acp": "bin/codex-acp.js"
708
710
  },
709
711
  "optionalDependencies": {
710
- "@zed-industries/codex-acp-darwin-arm64": "0.15.0",
711
- "@zed-industries/codex-acp-darwin-x64": "0.15.0",
712
- "@zed-industries/codex-acp-linux-arm64": "0.15.0",
713
- "@zed-industries/codex-acp-linux-x64": "0.15.0",
714
- "@zed-industries/codex-acp-win32-arm64": "0.15.0",
715
- "@zed-industries/codex-acp-win32-x64": "0.15.0"
712
+ "@zed-industries/codex-acp-darwin-arm64": "0.16.0",
713
+ "@zed-industries/codex-acp-darwin-x64": "0.16.0",
714
+ "@zed-industries/codex-acp-linux-arm64": "0.16.0",
715
+ "@zed-industries/codex-acp-linux-x64": "0.16.0",
716
+ "@zed-industries/codex-acp-win32-arm64": "0.16.0",
717
+ "@zed-industries/codex-acp-win32-x64": "0.16.0"
716
718
  }
717
719
  },
718
720
  "node_modules/@zed-industries/codex-acp-darwin-arm64": {
719
- "version": "0.15.0",
720
- "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp-darwin-arm64/-/codex-acp-darwin-arm64-0.15.0.tgz",
721
- "integrity": "sha512-9/tnj1fXeXIONgr+5FGwr3bkqd4jaORdr3X9/k++rzHW+UIzvgIeXrJKv43403gtuKp0BoxdzsFxe2qsAQhhkw==",
721
+ "version": "0.16.0",
722
+ "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp-darwin-arm64/-/codex-acp-darwin-arm64-0.16.0.tgz",
723
+ "integrity": "sha512-2AmbWsc/+Mpn6U8UOIlPLvgwGsGOr/LFpgcvrnjcCT9V1yY92MLrqzjMX82+VjTrRLRuXvc25SB5Z1++4Pw29g==",
722
724
  "cpu": [
723
725
  "arm64"
724
726
  ],
725
- "deprecated": "This package has been replaced by @agentclientprotocol/codex-acp. Please migrate to continue receiving updates.",
726
727
  "license": "Apache-2.0",
727
728
  "optional": true,
728
729
  "os": [
@@ -733,13 +734,12 @@
733
734
  }
734
735
  },
735
736
  "node_modules/@zed-industries/codex-acp-darwin-x64": {
736
- "version": "0.15.0",
737
- "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp-darwin-x64/-/codex-acp-darwin-x64-0.15.0.tgz",
738
- "integrity": "sha512-2cmflnVYM5yzvNu4ldff6OsfLzQThFToPszCT3t7jytWuG28V+W1cUEGsvFJGNkGC1Wo29Z4w5LZ3wyfOkvPxg==",
737
+ "version": "0.16.0",
738
+ "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp-darwin-x64/-/codex-acp-darwin-x64-0.16.0.tgz",
739
+ "integrity": "sha512-QCWggk0s4GTPLCR7eznyx29Dls4gzUKvp4MjZ4nzPX5gDL/02PGY+oCV1WsQOsnzWRK0RxM+GlK19rG1qzqplw==",
739
740
  "cpu": [
740
741
  "x64"
741
742
  ],
742
- "deprecated": "This package has been replaced by @agentclientprotocol/codex-acp. Please migrate to continue receiving updates.",
743
743
  "license": "Apache-2.0",
744
744
  "optional": true,
745
745
  "os": [
@@ -750,13 +750,12 @@
750
750
  }
751
751
  },
752
752
  "node_modules/@zed-industries/codex-acp-linux-arm64": {
753
- "version": "0.15.0",
754
- "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp-linux-arm64/-/codex-acp-linux-arm64-0.15.0.tgz",
755
- "integrity": "sha512-ioCXCiZMd4v7Eqyed9Iz4xcPKsZbSH157wOitsWQKxUiX43c1Ti5fykZcrh9cNSLOgiGmI3V2nbYp0aTf66grQ==",
753
+ "version": "0.16.0",
754
+ "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp-linux-arm64/-/codex-acp-linux-arm64-0.16.0.tgz",
755
+ "integrity": "sha512-8HaZGWVPVs1N6yqImLCKlnlcYTYc9BMCEhaVJk0ON9lyofhK9mOBBAHQndKC4Scqq5JLUHQIOyb8+jwHUe3hSQ==",
756
756
  "cpu": [
757
757
  "arm64"
758
758
  ],
759
- "deprecated": "This package has been replaced by @agentclientprotocol/codex-acp. Please migrate to continue receiving updates.",
760
759
  "license": "Apache-2.0",
761
760
  "optional": true,
762
761
  "os": [
@@ -767,13 +766,12 @@
767
766
  }
768
767
  },
769
768
  "node_modules/@zed-industries/codex-acp-linux-x64": {
770
- "version": "0.15.0",
771
- "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp-linux-x64/-/codex-acp-linux-x64-0.15.0.tgz",
772
- "integrity": "sha512-WtqI8KGX9z7XvdkazumYraoDwpip5lFBRtFXoIwYCSBoDZdOqQsfNQndIfTDttfQ1BdZYKczDnrfbRaiIFU9UA==",
769
+ "version": "0.16.0",
770
+ "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp-linux-x64/-/codex-acp-linux-x64-0.16.0.tgz",
771
+ "integrity": "sha512-xs5zZBLpJuciEbZNx6ZSNL0qCa9h3i/zWpj40sp6QtF+L4Ow/7qzHdBzboGhHdcz1jrLedfZeRFDA2Elj8TLMA==",
773
772
  "cpu": [
774
773
  "x64"
775
774
  ],
776
- "deprecated": "This package has been replaced by @agentclientprotocol/codex-acp. Please migrate to continue receiving updates.",
777
775
  "license": "Apache-2.0",
778
776
  "optional": true,
779
777
  "os": [
@@ -784,13 +782,12 @@
784
782
  }
785
783
  },
786
784
  "node_modules/@zed-industries/codex-acp-win32-arm64": {
787
- "version": "0.15.0",
788
- "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp-win32-arm64/-/codex-acp-win32-arm64-0.15.0.tgz",
789
- "integrity": "sha512-L+OFIPOzAuxsImlq8E227MZxgujMLMEJSqiR9QjZq8fiIFCKh/HnxmvyXvjWaHbJdb1pZ09WKe3MNwV9ln/+GQ==",
785
+ "version": "0.16.0",
786
+ "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp-win32-arm64/-/codex-acp-win32-arm64-0.16.0.tgz",
787
+ "integrity": "sha512-4V3pDJvEyNkgVqWqlm0bLYEZ8liGXXp8InuHzCy5cgr+SFur6BuasA29tisN8NUrLus/ZvMhXCrOsNKurYAWQw==",
790
788
  "cpu": [
791
789
  "arm64"
792
790
  ],
793
- "deprecated": "This package has been replaced by @agentclientprotocol/codex-acp. Please migrate to continue receiving updates.",
794
791
  "license": "Apache-2.0",
795
792
  "optional": true,
796
793
  "os": [
@@ -801,13 +798,12 @@
801
798
  }
802
799
  },
803
800
  "node_modules/@zed-industries/codex-acp-win32-x64": {
804
- "version": "0.15.0",
805
- "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp-win32-x64/-/codex-acp-win32-x64-0.15.0.tgz",
806
- "integrity": "sha512-LDnADpCg1Rzbkyxs4hMaOvRwNa68KLp8CoNVom8ZE/sChSvcDrj/RCoMsZWrARJGWs7EQ9zYeLoeVk5VcVQoPQ==",
801
+ "version": "0.16.0",
802
+ "resolved": "https://registry.npmjs.org/@zed-industries/codex-acp-win32-x64/-/codex-acp-win32-x64-0.16.0.tgz",
803
+ "integrity": "sha512-ZriI/ay5E3DCg8s22LZykIRI2XzQL6sZg/t81K+6qc86ldscaSWQSOT6KSnRcv31QJCMfBlFxMj22pZiGSVjQA==",
807
804
  "cpu": [
808
805
  "x64"
809
806
  ],
810
- "deprecated": "This package has been replaced by @agentclientprotocol/codex-acp. Please migrate to continue receiving updates.",
811
807
  "license": "Apache-2.0",
812
808
  "optional": true,
813
809
  "os": [
@@ -944,9 +940,9 @@
944
940
  }
945
941
  },
946
942
  "node_modules/bare-os": {
947
- "version": "3.9.1",
948
- "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.9.1.tgz",
949
- "integrity": "sha512-6M5XjcnsygQNPMCMPXSK379xrJFiZ/AEMNBmFEmQW8d/789VQATvriyi5r0HYTL9TkQ26rn3kgdTG3aisbrXkQ==",
943
+ "version": "3.9.3",
944
+ "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.9.3.tgz",
945
+ "integrity": "sha512-fF4Q7QsyKVF5Rj0qvI8BgUNjqzC2JvQlpTaPLjVJVxYVUX5Zr9un+y3w1HmA4nNKdFmRBT8z/WmrjvXzXVerKQ==",
950
946
  "license": "Apache-2.0",
951
947
  "engines": {
952
948
  "bare": ">=1.14.0"
@@ -962,11 +958,12 @@
962
958
  }
963
959
  },
964
960
  "node_modules/bare-stream": {
965
- "version": "2.13.1",
966
- "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.13.1.tgz",
967
- "integrity": "sha512-Vp0cnjYyrEC4whYTymQ+YZi6pBpfiICZO3cfRG8sy67ZNWe951urv1x4eW1BKNngw3U+3fPYb5JQvHbCtxH7Ow==",
961
+ "version": "2.13.3",
962
+ "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.13.3.tgz",
963
+ "integrity": "sha512-Kc+brLqvEqGkjyfiwJmImAOqLZL7OsoLKuavx+hJjgVV3nLTOjloJyPMFxjUPerGGHrNH0fLU06jjykMLWrERQ==",
968
964
  "license": "Apache-2.0",
969
965
  "dependencies": {
966
+ "b4a": "^1.8.1",
970
967
  "streamx": "^2.25.0",
971
968
  "teex": "^1.0.1"
972
969
  },
@@ -997,20 +994,20 @@
997
994
  }
998
995
  },
999
996
  "node_modules/body-parser": {
1000
- "version": "2.2.2",
1001
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
1002
- "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
997
+ "version": "2.3.0",
998
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.3.0.tgz",
999
+ "integrity": "sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==",
1003
1000
  "license": "MIT",
1004
1001
  "dependencies": {
1005
1002
  "bytes": "^3.1.2",
1006
- "content-type": "^1.0.5",
1003
+ "content-type": "^2.0.0",
1007
1004
  "debug": "^4.4.3",
1008
- "http-errors": "^2.0.0",
1009
- "iconv-lite": "^0.7.0",
1005
+ "http-errors": "^2.0.1",
1006
+ "iconv-lite": "^0.7.2",
1010
1007
  "on-finished": "^2.4.1",
1011
- "qs": "^6.14.1",
1012
- "raw-body": "^3.0.1",
1013
- "type-is": "^2.0.1"
1008
+ "qs": "^6.15.2",
1009
+ "raw-body": "^3.0.2",
1010
+ "type-is": "^2.1.0"
1014
1011
  },
1015
1012
  "engines": {
1016
1013
  "node": ">=18"
@@ -1020,6 +1017,19 @@
1020
1017
  "url": "https://opencollective.com/express"
1021
1018
  }
1022
1019
  },
1020
+ "node_modules/body-parser/node_modules/content-type": {
1021
+ "version": "2.0.0",
1022
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
1023
+ "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
1024
+ "license": "MIT",
1025
+ "engines": {
1026
+ "node": ">=18"
1027
+ },
1028
+ "funding": {
1029
+ "type": "opencollective",
1030
+ "url": "https://opencollective.com/express"
1031
+ }
1032
+ },
1023
1033
  "node_modules/bytes": {
1024
1034
  "version": "3.1.2",
1025
1035
  "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
@@ -1856,12 +1866,16 @@
1856
1866
  }
1857
1867
  },
1858
1868
  "node_modules/range-parser": {
1859
- "version": "1.2.1",
1860
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
1861
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
1869
+ "version": "1.3.0",
1870
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.3.0.tgz",
1871
+ "integrity": "sha512-hek2mFQpPuI4E1BBKrSto+BU3e3x4xuarsbiwr3+lf7p44juvFMV0XFWQAP3xUyqXA4RrXLIoaSUGbSt056ZMw==",
1862
1872
  "license": "MIT",
1863
1873
  "engines": {
1864
1874
  "node": ">= 0.6"
1875
+ },
1876
+ "funding": {
1877
+ "type": "opencollective",
1878
+ "url": "https://opencollective.com/express"
1865
1879
  }
1866
1880
  },
1867
1881
  "node_modules/raw-body": {
@@ -1983,14 +1997,14 @@
1983
1997
  }
1984
1998
  },
1985
1999
  "node_modules/side-channel": {
1986
- "version": "1.1.0",
1987
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
1988
- "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
2000
+ "version": "1.1.1",
2001
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz",
2002
+ "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
1989
2003
  "license": "MIT",
1990
2004
  "dependencies": {
1991
2005
  "es-errors": "^1.3.0",
1992
- "object-inspect": "^1.13.3",
1993
- "side-channel-list": "^1.0.0",
2006
+ "object-inspect": "^1.13.4",
2007
+ "side-channel-list": "^1.0.1",
1994
2008
  "side-channel-map": "^1.0.1",
1995
2009
  "side-channel-weakmap": "^1.0.2"
1996
2010
  },
@@ -2097,9 +2111,9 @@
2097
2111
  }
2098
2112
  },
2099
2113
  "node_modules/streamx": {
2100
- "version": "2.27.0",
2101
- "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.27.0.tgz",
2102
- "integrity": "sha512-WZ189TKnHoAokYHvwzaAQMpd55cgUmFIcJFzBSgGcb886jau5DL+XdDhTWV4ps3FLvk+OORp0dLRTPsLZ21CSA==",
2114
+ "version": "2.28.0",
2115
+ "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.28.0.tgz",
2116
+ "integrity": "sha512-1Yowhzjf0ivGMrTIkY9hav5TxobO9qIVqUE41fiCGMGgc3CLlf4MY+9AHmZqBWgDTue0fY9zWjYFVyf6Diuobw==",
2103
2117
  "license": "MIT",
2104
2118
  "dependencies": {
2105
2119
  "events-universal": "^1.0.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/acpx",
3
- "version": "2026.7.1-beta.1",
3
+ "version": "2026.7.1-beta.4",
4
4
  "description": "OpenClaw ACP runtime backend with plugin-owned session and transport management.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -8,8 +8,8 @@
8
8
  },
9
9
  "type": "module",
10
10
  "dependencies": {
11
- "@agentclientprotocol/claude-agent-acp": "0.39.0",
12
- "@zed-industries/codex-acp": "0.15.0",
11
+ "@agentclientprotocol/claude-agent-acp": "0.55.0",
12
+ "@zed-industries/codex-acp": "0.16.0",
13
13
  "acpx": "0.11.2",
14
14
  "zod": "4.4.3"
15
15
  },
@@ -26,10 +26,10 @@
26
26
  "minHostVersion": ">=2026.4.25"
27
27
  },
28
28
  "compat": {
29
- "pluginApi": ">=2026.7.1-beta.1"
29
+ "pluginApi": ">=2026.7.1-beta.4"
30
30
  },
31
31
  "build": {
32
- "openclawVersion": "2026.7.1-beta.1",
32
+ "openclawVersion": "2026.7.1-beta.4",
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.7.1-beta.1"
61
+ "openclaw": ">=2026.7.1-beta.4"
62
62
  },
63
63
  "peerDependenciesMeta": {
64
64
  "openclaw": {
@@ -209,8 +209,8 @@ ${ACPX_CMD} codex sessions close oc-codex-<conversationId>
209
209
  Defaults are:
210
210
 
211
211
  - `openclaw -> openclaw acp`
212
- - `claude -> bundled @agentclientprotocol/claude-agent-acp@0.32.0`
213
- - `codex -> bundled @zed-industries/codex-acp@0.13.0 through OpenClaw's isolated CODEX_HOME wrapper`
212
+ - `claude -> bundled @agentclientprotocol/claude-agent-acp@0.55.0`
213
+ - `codex -> bundled @zed-industries/codex-acp@0.16.0 through OpenClaw's isolated CODEX_HOME wrapper`
214
214
  - `copilot -> copilot --acp --stdio`
215
215
  - `cursor -> cursor-agent acp`
216
216
  - `droid -> droid exec --output-format acp`