By devasher · Edited by Nominiclaw
This update covers the upgrade to pnpm 11, the enablement of Codex native code mode for harness runs, and performance optimizations for authentication profile writes.
This recent window of activity in the OpenClaw repository focuses on critical infrastructure upgrades, enhancing the integration with Codex, and optimizing internal authentication handling. These changes ensure the platform remains performant and compatible with the latest toolchains while improving the native execution path for agents.
The OpenClaw workspace has been upgraded from pnpm 10 to pnpm 11. This transition involves moving pnpm project settings into a dedicated pnpm-workspace.yaml file, which streamlines configuration management. The upgrade impacts several core components, including the installer, updater, CI/release workflows, and Docker images.
To maintain stability, the team has ensured that patch-file validation remains active by carrying the pnpm-workspace.yaml into the runtime image. This prevents potential regressions in dependency patching during the runtime environment setup.
OpenClaw now enables "native code mode" for its bundled Codex app-server harness runs. By setting features.code_mode = true and features.code_mode_only = true during thread start and resume parameters, OpenClaw dynamic tools can plug directly into the native Codex surface.
This shift removes the necessity for a "PI-shaped tool-search bridge," allowing the agent to call tools through Codex's own runtime model and execution surface. This ensures a native-first approach to tool handling and deferred search, which improves the efficiency and and reliability of the Codex integration.
In a performance-focused update, the team consolidated the recording of successful authentication profile usage. A new helper, markAuthProfileSuccess, has been introduced to record the last-good auth profile and usage statistics in a single locked auth-store update.
This replaces the previous two-step process of calling markAuthProfileGood and markAuthProfileUsed separately. By reducing the number of writes to the auth-store, the system reduces overhead and improves the overall responsiveness of embedded model runs.
These updates collectively improve the developer experience and the operational efficiency of the OpenClaw platform. The pnpm 11 upgrade ensures the rest of the development environment stays current with the latest package manager features.
Regarding the Codex integration, the move to native code mode provides a more robust and architecture-aligned execution path, reducing the complexity of the tool-search bridge. Finally, the authentication write consolidation minimizes I/O overhead for frequent authentication checks, resulting in a performance gain for agent runtime operations.