OpenClaw v2026.4.24

Google Meet, DeepSeek V4, Realtime Voice & Plugin Infrastructure

Released: April 25, 2026
Generated: April 26, 2026

Sources: GitHub Release Notes, OpenClaw Documentation

๐Ÿš€ What's New

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.

  • Google Meet Integration: Bundled participant plugin with personal Google auth, Chrome/Twilio realtime sessions, and artifact exports
  • DeepSeek V4: Flash and Pro in catalog; Flash is the new onboarding default
  • Realtime Voice Loops: Talk, Voice Call, and Google Meet can now consult the full OpenClaw agent for tool-backed answers
  • Browser Automation: Coordinate clicks, longer action budgets, per-profile headless overrides
  • Lighter Infrastructure: Static catalogs, lazy providers, and external runtime-dependency repair

๐Ÿ“น Google Meet Integration

Native Bundled Participant Plugin

  • Personal Google Auth: Users authenticate with their own Google accounts โ€” no service-account sprawl
  • Chrome / Twilio Realtime Sessions: Dual backend support for browser-based and programmable-voice bridges
  • Paired-Node Chrome: Distributed Chrome instances can pair to handle Meet sessions at scale
  • Artifact & Attendance Exports: Meeting transcripts, attendance logs, and artifacts are first-class outputs
  • Recovery Tooling: Detects and recovers already-open Meet tabs instead of failing or duplicating

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.

๐Ÿง  DeepSeek V4 Support

Flash & Pro in the Bundled Catalog

  • DeepSeek V4 Flash: New onboarding default โ€” fast, cost-efficient reasoning
  • DeepSeek V4 Pro: Available for demanding tool-call and reasoning workloads
  • Thinking / Replay Fix: Follow-up tool-call turns now correctly preserve and replay DeepSeek's thinking blocks
  • Catalog Metadata: Bundled via Pi packages 0.70.2 with upstream DeepSeek V4 metadata

# 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.

๐ŸŽ™๏ธ Realtime Voice Loops

Full-Agent Consultation During Voice Sessions

  • Talk, Voice Call, and Google Meet can now run realtime voice loops that consult the full OpenClaw agent
  • Deeper Tool-Backed Answers: Voice interactions are no longer shallow โ€” the agent can invoke tools, query memory, and browse the web mid-conversation
  • Gemini Live Backend: New realtime voice provider bridges backend Voice Call and Google Meet audio through Gemini Live
  • Gateway / VoiceClaw WebSocket: New /voiceclaw realtime brain WebSocket endpoint backed by Gemini Live

Architecture: Audio stream โ†’ Gemini Live โ†’ OpenClaw agent loop โ†’ tool execution โ†’ synthesized response โ†’ audio out. Latency is kept low via streaming deltas and aggressive caching.

๐ŸŒ Browser Automation Upgrades

Steadier, More Flexible, Longer-Running

  • Coordinate Clicks: Precise x/y click actions for canvas-based UIs, maps, and non-semantic web apps
  • Longer Default Action Budget: Default timeout increased to 60 seconds for complex page loads and multi-step flows
  • Per-Profile Headless Overrides: Individual browser profiles can override global headless settings โ€” useful for debugging specific automations visually
  • Tab Reuse & Recovery: Smarter tab deduplication and crash recovery reduces session churn and memory fragmentation

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.

๐Ÿ”Œ Plugin Infrastructure Improvements

Lighter, Faster, More Maintainable

  • Static Model Catalogs: Model lists are now compiled statically rather than resolved at every startup
  • Manifest-Backed Model Rows: Each model's metadata is driven by a manifest file, enabling easier community contributions
  • Lazy Provider Dependencies: Providers are loaded on first use rather than eagerly at boot โ€” cuts cold-start time significantly
  • External Runtime-Dependency Repair: Packaged installs can self-repair missing runtime dependencies without a full reinstall

Impact: Startup latency drops, binary/package distributions are more resilient, and the plugin SDK surface is cleaner for third-party authors.

โš ๏ธ Breaking Changes & Migration

Plugin SDK / Tool-Result Transforms

Removed: The Pi-only api.registerEmbeddedExtensionFactory(...) compatibility path for bundled tool-result rewrites is gone.

  • All bundled tool-result transforms must now use api.registerAgentToolResultMiddleware(...)
  • Declare targeted harnesses via contracts.agentToolResultMiddleware
  • Transforms now run consistently across Pi and Codex app-server dynamic tools

// OLD โ€” removed in v2026.4.24

api.registerEmbeddedExtensionFactory({ ... })

// NEW โ€” use middleware with contract declaration

api.registerAgentToolResultMiddleware({

contract: contracts.agentToolResultMiddleware,

harnesses: ['pi', 'codex'],

transform: (result) => { ... }

})

๐Ÿ‘ฅ Community Impact & Competitive Positioning

  • Extreme Velocity: Two major releases in 48 hours (v2026.4.23 โ†’ v2026.4.24). OpenClaw is shipping faster than most commercial platforms iterate in a quarter.
  • Enterprise Conferencing: Google Meet integration puts OpenClaw in direct competition with enterprise agent platforms targeting meeting automation and sales intelligence.
  • Multi-Model Agility: DeepSeek V4 default onboarding shows OpenClaw is model-agnostic and willing to switch defaults based on capability/cost โ€” not vendor lock-in.
  • Realtime Differentiation: Voice loops backed by the full agent (not just a slim LLM) is a capability gap versus simpler voice bots.
  • Hermes Agent Competition: As an open-source AI agent platform, OpenClaw's daily release cadence and broad provider support keep pressure on closed alternatives.

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.

๐Ÿ“š Summary & Links

Key Takeaways

  • Google Meet is now a first-class participant plugin with auth, recovery, and artifact exports
  • DeepSeek V4 Flash is the onboarding default; thinking/replay bugs are fixed
  • Realtime voice loops consult the full agent โ€” not just a lightweight model
  • Browser automation is steadier with 60s budgets, coordinate clicks, and per-profile headless overrides
  • Plugin infrastructure is lighter: static catalogs, lazy providers, manifest-driven models
  • Breaking: Migrate tool-result transforms to registerAgentToolResultMiddleware

Update: npm update -g openclaw && openclaw gateway restart

GitHub Release: v2026.4.24 ยท Previous: v2026.4.23 ยท Documentation ยท github.com/openclaw/openclaw