@openclaw/codex 2026.5.28-beta.4 → 2026.5.28

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/harness.js CHANGED
@@ -32,7 +32,7 @@ function createCodexAppServerAgentHarness(options) {
32
32
  };
33
33
  },
34
34
  runAttempt: async (params) => {
35
- const { runCodexAppServerAttempt } = await import("./run-attempt-C6EMmamz.js");
35
+ const { runCodexAppServerAttempt } = await import("./run-attempt-CuhGEh0u.js");
36
36
  return runCodexAppServerAttempt(params, {
37
37
  pluginConfig: options?.resolvePluginConfig?.() ?? options?.pluginConfig,
38
38
  nativeHookRelay: { enabled: true }
@@ -26,7 +26,7 @@ import { createDiagnosticTraceContextFromActiveScope, emitTrustedDiagnosticEvent
26
26
  import { markAuthProfileBlockedUntil, resolveAgentDir as resolveAgentDir$1, resolveAgentWorkspaceDir } from "openclaw/plugin-sdk/agent-runtime";
27
27
  import { isToolAllowed } from "openclaw/plugin-sdk/sandbox";
28
28
  import { appendRegularFile, pathExists } from "openclaw/plugin-sdk/security-runtime";
29
- import { parseFiniteNumber, parseStrictNonNegativeInteger } from "openclaw/plugin-sdk/number-runtime";
29
+ import { parseStrictNonNegativeInteger, resolveTimerTimeoutMs } from "openclaw/plugin-sdk/number-runtime";
30
30
  import { buildSessionContext, migrateSessionEntries, parseSessionEntries } from "openclaw/plugin-sdk/agent-sessions";
31
31
  import { isIP } from "node:net";
32
32
  import { createAgentHarnessTaskRuntime, deliverAgentHarnessTaskCompletion, isDurableAgentHarnessCompletionDelivery } from "openclaw/plugin-sdk/agent-harness-task-runtime";
@@ -969,9 +969,7 @@ const CODEX_TURN_ASSISTANT_COMPLETION_IDLE_TIMEOUT_MS = 1e4;
969
969
  const CODEX_POST_REASONING_SOURCE_REPLY_IDLE_TIMEOUT_MS = 5 * 6e4;
970
970
  const CODEX_TURN_TERMINAL_IDLE_TIMEOUT_MS = 30 * 6e4;
971
971
  function resolvePositiveIntegerTimeoutMs(value, fallbackMs) {
972
- const fallback = parseFiniteNumber(fallbackMs) ?? 1;
973
- const candidate = parseFiniteNumber(value) ?? fallback;
974
- return Math.max(1, Math.floor(candidate));
972
+ return resolveTimerTimeoutMs(value, resolveTimerTimeoutMs(fallbackMs, 1));
975
973
  }
976
974
  async function withCodexStartupTimeout(params) {
977
975
  if (params.signal.aborted) throw new Error("codex app-server startup aborted");
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@openclaw/codex",
3
- "version": "2026.5.28-beta.4",
3
+ "version": "2026.5.28",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@openclaw/codex",
9
- "version": "2026.5.28-beta.4",
9
+ "version": "2026.5.28",
10
10
  "dependencies": {
11
11
  "@openai/codex": "0.134.0",
12
12
  "typebox": "1.1.38",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/codex",
3
- "version": "2026.5.28-beta.4",
3
+ "version": "2026.5.28",
4
4
  "description": "OpenClaw Codex app-server harness and model provider plugin with a Codex-managed GPT catalog.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,10 +26,10 @@
26
26
  "minHostVersion": ">=2026.5.1-beta.1"
27
27
  },
28
28
  "compat": {
29
- "pluginApi": ">=2026.5.28-beta.4"
29
+ "pluginApi": ">=2026.5.28"
30
30
  },
31
31
  "build": {
32
- "openclawVersion": "2026.5.28-beta.4"
32
+ "openclawVersion": "2026.5.28"
33
33
  },
34
34
  "release": {
35
35
  "publishToClawHub": true,
@@ -46,7 +46,7 @@
46
46
  "npm-shrinkwrap.json"
47
47
  ],
48
48
  "peerDependencies": {
49
- "openclaw": ">=2026.5.28-beta.4"
49
+ "openclaw": ">=2026.5.28"
50
50
  },
51
51
  "peerDependenciesMeta": {
52
52
  "openclaw": {