Released: April 25, 2026
Generated: April 26, 2026
Sources: GitHub Release Notes, OpenClaw Documentation
OpenClaw v2026.4.24 ships ~24 hours after v2026.4.23, demonstrating extreme velocity. This release bundles Google Meet as a native participant plugin, lands DeepSeek V4 models, overhauls realtime voice loops, and hardens browser automation and plugin infrastructure.
Impact: OpenClaw can now join, participate in, and extract value from Google Meet calls as a first-class agent โ opening enterprise conferencing, sales calls, and remote standups to agentic automation.
# Onboarding now defaults to DeepSeek V4 Flash
openclaw models list | grep deepseek
# deepseek/deepseek-v4-flash (default)
# deepseek/deepseek-v4-pro
Note: The thinking/replay fix resolves a long-standing issue where multi-turn tool-call sessions with DeepSeek would lose intermediate reasoning, causing degraded follow-up accuracy.
/voiceclaw realtime brain WebSocket endpoint backed by Gemini LiveArchitecture: Audio stream โ Gemini Live โ OpenClaw agent loop โ tool execution โ synthesized response โ audio out. Latency is kept low via streaming deltas and aggressive caching.
Operational Note: The 60s default budget means long-polling dashboards, SPAs with heavy hydration, and multi-step auth flows now succeed without custom timeout tuning.
Impact: Startup latency drops, binary/package distributions are more resilient, and the plugin SDK surface is cleaner for third-party authors.
Removed: The Pi-only api.registerEmbeddedExtensionFactory(...) compatibility path for bundled tool-result rewrites is gone.
api.registerAgentToolResultMiddleware(...)contracts.agentToolResultMiddleware// OLD โ removed in v2026.4.24
api.registerEmbeddedExtensionFactory({ ... })
// NEW โ use middleware with contract declaration
api.registerAgentToolResultMiddleware({
contract: contracts.agentToolResultMiddleware,
harnesses: ['pi', 'codex'],
transform: (result) => { ... }
})
Strategic Observation: The combination of Google Meet + Gemini Live + full agent voice loops positions OpenClaw as a viable "AI participant" in live enterprise workflows โ not just a chat backend.
registerAgentToolResultMiddlewareUpdate: npm update -g openclaw && openclaw gateway restart
GitHub Release: v2026.4.24 ยท Previous: v2026.4.23 ยท Documentation ยท github.com/openclaw/openclaw