45 wires and counting

$ follow OpenClaw

Keep up with OpenClaw in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-06-06
stories 64

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

iMessage RPC framing fixed after head-of-line jam

By RepoJournal · Filed · About OpenClaw

OpenClaw fixes iMessage RPC framing that caused a receive jam, plus Codex timeout diagnostics and reply preservation.

A fix for iMessage RPC framing lands: [1] the `node:readline` reader previously split JSON-RPC responses on raw U+2028/U+2029 characters inside string values, fragmenting valid responses and failing `JSON.parse`. This caused a head-of-line receive jam with repeated parse errors and pending RPC requests timing out. The new framing parses on LF only.

Codex completion-watch reliability improves with two changes. [2] Codex-specific timeout diagnostics now surface after the retry path is exhausted, including bounded assistant text previews without raw prompt or tool content; progress and terminal watch timeouts stay generic. [3] Completed assistant replies are preserved when the app-server client closes before `turn/completed`, whereas partial output and active-item failures still report client-close errors.

OpenAI audio transcription auth now resolves through the `openai-audio-transcriptions` API contract, [4] so OAuth profiles are rejected for that endpoint and the platform API key is used. Also, Anthropic streaming now defers the `start` event until after `message_start`, [5] fixing extended thinking sessions that became permanently broken after a gateway restart or five-minute prompt-cache expiry.

Docs polish continues with a French glossary expansion, [6] adding 27 mappings to guide translation of page titles and common terms.

Quick answers

What shipped in OpenClaw on June 6, 2026?
OpenClaw fixes iMessage RPC framing that caused a receive jam, plus Codex timeout diagnostics and reply preservation. In total, 38 commits and 26 pull requests landed.
Who contributed to OpenClaw on June 6, 2026?
7 developers shipped this update, including omarshahine, kevinslin, brokemac79, Glucksberg, openperf, notadev99, and vyctorbrzezowski.
What were the notable OpenClaw updates?
fix(imessage): frame rpc stdout on LF only, fix(codex): report completion timeout diagnostics, and fix(codex): preserve completed replies after client close.