Refresh iOS pro UI and gateway flows#87367
Conversation
|
Codex review: needs maintainer review before merge. Reviewed May 27, 2026, 6:46 PM ET / 22:46 UTC. Summary Reproducibility: not applicable. as a feature PR rather than a bug report. The changed behavior is nevertheless demonstrated by contributor-supplied phone/simulator proof and gateway logs. Review metrics: 2 noteworthy metrics.
Merge readiness Overall follows the weaker of proof and patch quality, so missing proof can cap an otherwise strong patch. Rank-up moves:
Risk before merge
Maintainer options:
Next step before merge Security Review detailsBest possible solution: Land the PR only after maintainers accept the iOS product direction and upgrade/session contract, keep the focused regression coverage, and require latest-head CI or an explicit maintainer proof override before merge. Do we have a high-confidence way to reproduce the issue? Not applicable as a feature PR rather than a bug report. The changed behavior is nevertheless demonstrated by contributor-supplied phone/simulator proof and gateway logs. Is this the best way to solve the issue? Yes, if maintainers accept the product direction: the branch is cohesive and has focused regression coverage for the risky chat/session/talk paths. It is not a narrow bug-fix path, so maintainer upgrade and UX acceptance are the right remaining gates. AGENTS.md: found and applied where relevant. Codex review notes: model gpt-5.5, reasoning high; reviewed against 77fe36bb98ea. Label changesLabel changes:
Label justifications:
Evidence reviewedWhat I checked:
Likely related people:
What the crustacean ranks mean
Shiny media proof means a screenshot, video, or linked artifact directly shows the changed behavior. Runtime, network, CSP, and security claims still need visible diagnostics. How this review workflow works
|
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
This PR expands realtime talk + session management behavior on the gateway, and introduces a substantial iOS “Pro” UI refresh with new chat/talk transport capabilities.
Changes:
- Gateway: record realtime transcripts to suppress assistant echo loops; optionally force agent consult routing on final transcripts.
- Gateway sessions: inherit runtime model/provider selection from parent sessions when
modelis omitted. - iOS: add new Pro UI components/tabs, chat transport enhancements (sessions.create + agent.wait), appearance preferences, and updated UX scaffolding.
Reviewed changes
Copilot reviewed 85 out of 86 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/gateway/talk-realtime-relay.ts | Records final transcripts and filters assistant-echo user transcripts; toggles provider auto-response based on consult routing. |
| src/gateway/talk-realtime-relay.test.ts | Updates relay tests and adds coverage for echo transcript suppression and consult routing behavior. |
| src/gateway/server.sessions.create.test.ts | Adds test coverage for inheriting parent runtime model selection when model is omitted. |
| src/gateway/server-methods/sessions.ts | Implements runtime selection inheritance from parent sessions during sessions.create. |
| scripts/protocol-gen-swift.ts | Avoids generating unreachable default switch case for fully-covered Bool discriminators. |
| apps/swabble/Package.resolved | Updates Swift package lockfile with new dependencies. |
| apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift | Removes unreachable decoding default for Bool discriminated union (generated output). |
| apps/shared/OpenClawKit/Sources/OpenClawKit/ShareToAgentSettings.swift | Changes default share instruction fallback behavior (now empty by default). |
| apps/shared/OpenClawKit/Sources/OpenClawKit/ShareToAgentDeepLink.swift | Avoids emitting “Shared from iOS” / instruction lines when there is no real content. |
| apps/shared/OpenClawKit/Sources/OpenClawKit/Resources/CanvasScaffold/scaffold.html | Updates scaffold theme colors/visual styling. |
| apps/shared/OpenClawKit/Sources/OpenClawKit/GatewayNodeSession.swift | Adds send(method:paramsJSON:) helper for fire-and-forget gateway messages. |
| apps/shared/OpenClawKit/Sources/OpenClawKit/GatewayChannel.swift | Increases connect timeout for slow/remote gateways. |
| apps/shared/OpenClawKit/Sources/OpenClawChatUI/ChatViewModel+SessionKeys.swift | Adds session-key matching/alias handling utilities. |
| apps/shared/OpenClawKit/Sources/OpenClawChatUI/ChatViewModel+Attachments.swift | Adds image attachment loading + preprocessing helpers. |
| apps/shared/OpenClawKit/Sources/OpenClawChatUI/ChatView.swift | Adds “clean” composer chrome, assistant identity/avatars, foreground resume handling, and new empty/loading states. |
| apps/shared/OpenClawKit/Sources/OpenClawChatUI/ChatTransport.swift | Extends transport with createSession + waitForRunCompletion (with default implementations). |
| apps/shared/OpenClawKit/Sources/OpenClawChatUI/ChatTheme.swift | Adds adaptive iOS palette + new background/panel styling. |
| apps/shared/OpenClawKit/Sources/OpenClawChatUI/ChatModels.swift | Adds create-session response model. |
| apps/shared/OpenClawKit/Sources/OpenClawChatUI/ChatMessageViews.swift | Adds assistant avatar view + incorporates avatar chrome into message/typing/streaming bubbles. |
| apps/ios/project.yml | Updates iOS entitlements/usage strings (local networking, mic/speech descriptions). |
| apps/ios/Tests/TalkModeConfigParsingTests.swift | Updates parsing expectations and adds new tests for relay defaults + redacted config parsing. |
| apps/ios/Tests/SwiftUIRenderSmokeTests.swift | Updates smoke tests to new Settings tab and adds light/dark render coverage. |
| apps/ios/Tests/ShareToAgentDeepLinkTests.swift | Resets instruction defaults in tests to avoid cross-test leakage. |
| apps/ios/Tests/SettingsNetworkingHelpersTests.swift | Adds tests for Settings diagnostics issue calculation. |
| apps/ios/Tests/RootCanvasPresentationTests.swift | Renames suite + switches to RootTabs presentation logic. |
| apps/ios/Tests/OnboardingStateStoreTests.swift | Updates onboarding tests for new hasSavedGatewayConnection parameter. |
| apps/ios/Tests/NodeAppModelInvokeTests.swift | Refactors tests for new screen mounting + robustness improvements. |
| apps/ios/Tests/IOSGatewayChatTransportTests.swift | Adds tests for new transport helpers (agent.wait, params encoding). |
| apps/ios/Tests/GatewayConnectionControllerTests.swift | Adds tests for location availability + manual endpoint fallback + config equality. |
| apps/ios/SwiftSources.input.xcfilelist | Updates source list for new Pro UI, onboarding steps, talk relay session, etc. |
| apps/ios/Sources/Voice/VoiceTab.swift | Removes old Voice tab UI. |
| apps/ios/Sources/Voice/TalkModeManager+Permissions.swift | Adds async permission request + message helpers for mic/speech. |
| apps/ios/Sources/Voice/TalkModeGatewayConfig.swift | Adjusts realtime transport/mode mapping (webrtc -> relay on iOS; managed-room -> native). |
| apps/ios/Sources/Voice/TalkGatewayPermissionState.swift | Adds talk permission state modeling. |
| apps/ios/Sources/Voice/TalkDefaults.swift | Adds speakerphone preference helpers. |
| apps/ios/Sources/Voice/RealtimeTalkRelaySession.swift | Adds RMS/barge-in handling + richer logging for realtime relay audio/transcript events. |
| apps/ios/Sources/Status/VoiceWakeToast.swift | Switches toast styling to new Pro glass surface. |
| apps/ios/Sources/Status/StatusPill.swift | Removes old connection status pill. |
| apps/ios/Sources/Status/StatusGlassCard.swift | Removes old glass card modifier. |
| apps/ios/Sources/Status/StatusActivityBuilder.swift | Removes pill activity builder tied to removed status pill. |
| apps/ios/Sources/Status/GatewayStatusBuilder.swift | Introduces GatewayDisplayState and updates status derivation. |
| apps/ios/Sources/Screen/ScreenTab.swift | Removes old Screen tab UI. |
| apps/ios/Sources/RootView.swift | Uses RootTabs and applies preferred color scheme. |
| apps/ios/Sources/OpenClawApp.swift | Uses RootTabs, applies appearance preference to windows, and refines URL routing. |
| apps/ios/Sources/Onboarding/OnboardingWizardView.swift | Extracts intro/welcome steps into new reusable step views. |
| apps/ios/Sources/Onboarding/OnboardingWizardSteps.swift | Adds extracted onboarding step views. |
| apps/ios/Sources/Onboarding/OnboardingStateStore.swift | Adds explicit hasSavedGatewayConnection control for onboarding presentation logic. |
| apps/ios/Sources/Model/NodeAppModel.swift | Adds focused chat session key + safer reconnect logic + speakerphone toggle + operator status normalization. |
| apps/ios/Sources/Info.plist | Adds local networking ATS setting and updates permission strings ordering. |
| apps/ios/Sources/Gateway/GatewayProblemView.swift | Updates banner styling to new material/shadow rules. |
| apps/ios/Sources/Gateway/GatewayConnectionController.swift | Adds manual endpoint fallback and async permission computation; refactors autoconnect logic. |
| apps/ios/Sources/Gateway/GatewayConnectConfig.swift | Adds semantic equality (hasSameConnectionInputs) for reconnect decisions. |
| apps/ios/Sources/Gateway/ExecApprovalPromptDialog.swift | Updates approval prompt card to use new Pro panel surface. |
| apps/ios/Sources/Design/SettingsProTabSupport.swift | Adds settings routes/layout/diagnostics and networking helpers for Pro settings. |
| apps/ios/Sources/Design/SettingsProTab.swift | Introduces new Pro Settings tab UI with gateway + talk + diagnostics controls. |
| apps/ios/Sources/Design/OpenClawProScreens.swift | Adds placeholder to organize Pro UI screens by tab. |
| apps/ios/Sources/Design/OpenClawProComponents.swift | Adds shared Pro UI components (backgrounds, cards, glass surfaces, metrics, etc.). |
| apps/ios/Sources/Design/OpenClawBrand.swift | Adds appearance preference + brand palette + helper chrome styles. |
| apps/ios/Sources/Design/CommandCenterSupport.swift | Adds shared Command Center UI components/rows. |
| apps/ios/Sources/Design/ChatProTab.swift | Adds Pro Chat tab that hosts OpenClawChatUI with custom chrome/talk control. |
| apps/ios/Sources/Design/AgentProTab.swift | Adds Pro Agent tab shell with overview state and navigation routes. |
| apps/ios/Sources/Design/AgentProTab+Usage.swift | Adds Agent usage UI cards and daily list rendering. |
| apps/ios/Sources/Design/AgentProTab+GatewayData.swift | Adds gateway data fetch, normalization, and overview refresh logic. |
| apps/ios/Sources/Design/AgentProTab+DetailComponents.swift | Adds shared detail metric/empty-state helpers for Agent tab. |
| apps/ios/Sources/Design/AgentProTab+Destinations.swift | Adds Agent tab destinations (skills/nodes/cron/usage/dreaming). |
| apps/ios/Sources/Design/AgentProTab+Cron.swift | Adds cron status + job list UI and cron actions. |
| apps/ios/Sources/Design/AgentProNodesDestination.swift | Adds node presence list + node detail views. |
| apps/ios/Sources/Design/AgentProModels.swift | Adds lightweight decodable models for overview/skills/cron/dreaming/usage. |
| apps/ios/Sources/Chat/IOSGatewayChatTransport.swift | Adds sessions.create + agent.wait, centralizes param encoding, and adds diagnostics logging. |
| apps/ios/Sources/Chat/ChatSheet.swift | Removes old chat sheet view. |
| apps/ios/Sources/Assets.xcassets/OpenClawIcon.imageset/Contents.json | Adds image set metadata for OpenClaw icon. |
Comments suppressed due to low confidence (5)
apps/ios/Sources/Voice/TalkModeManager+Permissions.swift:1
permissionMessage(kind:status:)returns “permission denied” even for the.grantedcase, which is logically incorrect and will misreport microphone permission state. Update the.grantedbranch to return a “granted/allowed” message (or remove it if callers only use this for failures).
apps/ios/Sources/Voice/TalkModeManager+Permissions.swift:1permissionMessage(kind:status:)returns “permission denied” for.authorized, which will mislead users and any UI/state that depends on this message. Change the.authorizedbranch to a “granted/allowed” message (or avoid returning a failure message for non-failure states).
src/gateway/server-methods/sessions.ts:1inheritedSelectionis spread afterpatched.entry, so inherited parent values will override values explicitly set by the currentsessions.createcall wheneverp.modelis omitted (e.g., a request setsproviderOverridebut leavesmodelempty and gets the parent’s provider instead). To make inheritance behave as “fill missing fields”, spreadinheritedSelectionbeforepatched.entryor apply per-field inheritance only when the patched entry doesn’t already define that field.
src/gateway/talk-realtime-relay.ts:1relay.transcriptgrows monotonically, but echo detection only needs a short lookback window (RELAY_TRANSCRIPT_ECHO_LOOKBACK_MS). This can lead to unnecessary memory usage for long-lived sessions. Consider pruning transcript entries older than the lookback window (or enforcing a max entry count) immediately after recording so the array stays bounded.
apps/shared/OpenClawKit/Sources/OpenClawChatUI/ChatMessageViews.swift:1- The Equatable conformance ignores
assistantAvatarTint. If the tint changes (theme/agent change), SwiftUI may skip updating this view because it still compares equal. IncludeassistantAvatarTintin the equality check (and any other appearance-affecting fields) to ensure updates re-render correctly.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: a09a51933b
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
ClawSweeper PR egg ✨ Hatched: 🌱 uncommon Gilded Branchling Hatch commandComment Hatchability rules:
Rarity: 🌱 uncommon. What is this egg doing here?
|
|
Addressed the current review blockers in
Validation after the patch:
@clawsweeper re-review |
|
🦞🧹 I asked ClawSweeper to review this item again. Re-review progress:
|
|
Addressed the updated ClawSweeper What changed:
Validation after the patch:
Note: a full @clawsweeper re-review |
|
🦞🧹 I asked ClawSweeper to review this item again. Re-review progress:
|
77e43aa to
ba8b490
Compare
|
Updated for What changed:
Validation after the rebase:
The prior @clawsweeper re-review |
|
🦞🧹 I asked ClawSweeper to review this item again. Re-review progress:
|
Summary: - Replace the legacy iOS shell with Pro Command, Chat, Agents, and Settings tabs. - Wire iOS chat/session/settings/diagnostics and realtime Talk flows through gateway-backed APIs. - Add gateway/session and shared chat coverage for the new iOS flow. Verification: - git diff --check - node scripts/run-vitest.mjs src/gateway/server.sessions.create.test.ts src/gateway/talk-realtime-relay.test.ts - swift test --filter ChatViewModelTests (apps/shared/OpenClawKit) - xcodebuild build for Nimrod's iPhone succeeded; install succeeded; launch was blocked because the phone was locked Known follow-up: - Preserve traceLevel in sessions.create parent runtime inheritance and keep the changelog credit in the follow-up patch.
…026.5.28) (#759) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/openclaw/openclaw](https://openclaw.ai) ([source](https://github.com/openclaw/openclaw)) | patch | `2026.5.27` → `2026.5.28` | --- ### Release Notes <details> <summary>openclaw/openclaw (ghcr.io/openclaw/openclaw)</summary> ### [`v2026.5.28`](https://github.com/openclaw/openclaw/blob/HEAD/CHANGELOG.md#2026528) [Compare Source](openclaw/openclaw@v2026.5.27...v2026.5.28) ##### Highlights - Agent and Codex runtime recovery is steadier: subagents keep cwd/workspace separation, hook context stays prompt-local, session locks release on timeout abort while live OpenClaw locks survive cleanup, stale restart continuations are avoided, and Codex app-server/helper failures no longer tear down shared runtime state. ([#​87218](openclaw/openclaw#87218), [#​86875](openclaw/openclaw#86875), [#​87409](openclaw/openclaw#87409), [#​87399](openclaw/openclaw#87399), [#​87375](openclaw/openclaw#87375), [#​88129](openclaw/openclaw#88129)) - Channel delivery and session identity got safer across outbound plugin hooks, Matrix room ids, iMessage reactions/approvals, Slack final replies, Discord recovered tool warnings, runtime-config message actions, WhatsApp profile auth roots, Telegram polling, and Microsoft Teams service URL trust checks. ([#​73706](openclaw/openclaw#73706), [#​75670](openclaw/openclaw#75670), [#​87366](openclaw/openclaw#87366), [#​87451](openclaw/openclaw#87451), [#​87334](openclaw/openclaw#87334), [#​84535](openclaw/openclaw#84535), [#​82492](openclaw/openclaw#82492), [#​83304](openclaw/openclaw#83304), [#​87160](openclaw/openclaw#87160)) - Mobile and chat surfaces got a broader refresh: the iOS Pro UI, hosted push relay default, realtime Talk tab playback, Gateway chat transport, onboarding, Talk permissions, WebChat reconnect delivery, and session picker behavior now preserve more state across reconnects and empty searches. ([#​87367](openclaw/openclaw#87367), [#​87531](openclaw/openclaw#87531), [#​87682](openclaw/openclaw#87682), [#​88096](openclaw/openclaw#88096), [#​88105](openclaw/openclaw#88105)) Thanks [@​ngutman](https://github.com/ngutman) and [@​BunsDev](https://github.com/BunsDev). - Browser, channel, and automation inputs are stricter: Browser tool timeouts, viewport/tab indices, Gateway ports, cron retry handling, Discord component ids, schema array refs, Telegram callback pages, and channel progress callbacks now reject malformed values earlier and preserve the intended delivery context. ([#​82887](openclaw/openclaw#82887)) - Provider, media, and document coverage expands with Claude Opus 4.8, Fal Krea image schemas, NVIDIA featured models, MiniMax streaming music responses, encrypted PDF extraction, voice model catalogs, GitHub Copilot agent runtime support, and a Codex Supervisor plugin path for delegated Codex workflows. ([#​87845](openclaw/openclaw#87845), [#​87890](openclaw/openclaw#87890), [#​80775](openclaw/openclaw#80775), [#​84764](openclaw/openclaw#84764), [#​87751](openclaw/openclaw#87751), [#​87794](openclaw/openclaw#87794)) - CLI, auth, doctor, and provider paths fail faster and recover more clearly: malformed numeric/version options are rejected, workspace dotenv provider credentials are ignored, heartbeat defaults, OAuth/token lifetimes, and local service startup requests are bounded, agent auth health labels are clearer, legacy `api_key` auth profiles migrate to canonical form, and restart guidance is actionable. ([#​87398](openclaw/openclaw#87398), [#​86281](openclaw/openclaw#86281), [#​87361](openclaw/openclaw#87361), [#​88133](openclaw/openclaw#88133), [#​83655](openclaw/openclaw#83655), [#​87559](openclaw/openclaw#87559), [#​88088](openclaw/openclaw#88088), [#​85924](openclaw/openclaw#85924)) Thanks [@​vincentkoc](https://github.com/vincentkoc) and [@​giodl73-repo](https://github.com/giodl73-repo). - Plugin and Gateway hot paths do less repeated work while preserving cache correctness for install records, config JSON parsing, tool search catalogs, session stores, manifest model rows, auto-enabled plugin config, browser tokens, viewer assets, and release-split external plugin packages. ([#​86699](openclaw/openclaw#86699)) - Release, QA, and E2E validation now bound more log, artifact, harness, and cross-OS waits so failing lanes produce proof instead of hanging or false-greening. ##### Changes - Status: show active subagent details in status output. - Diffs: split the default language pack and expand default Diffs language coverage while keeping the host floor aligned. ([#​87370](openclaw/openclaw#87370), [#​87372](openclaw/openclaw#87372)) Thanks [@​RomneyDa](https://github.com/RomneyDa). - ClawHub: add plugin display names plus skill verification and trust surfaces. ([#​87354](openclaw/openclaw#87354), [#​86699](openclaw/openclaw#86699)) Thanks [@​thewilloftheshadow](https://github.com/thewilloftheshadow) and [@​Patrick-Erichsen](https://github.com/Patrick-Erichsen). - iOS: refresh the dev app with Pro Command, Chat, Agents, Settings, hosted push relay defaults, and realtime Talk playback wired to gateway sessions, diagnostics, chat, and realtime Talk. ([#​87367](openclaw/openclaw#87367), [#​88096](openclaw/openclaw#88096), [#​88105](openclaw/openclaw#88105)) Thanks [@​Solvely-Colin](https://github.com/Solvely-Colin) and [@​ngutman](https://github.com/ngutman). - Docs: clarify Codex computer-use setup, paste-token stdin auth setup, macOS gateway sleep troubleshooting, native Codex hook relay recovery, container model auth, install deployment cards, device-token admin gating, CLI setup flow compatibility, Notte cloud browser CDP setup, and backport targets. ([#​87313](openclaw/openclaw#87313), [#​63050](openclaw/openclaw#63050), [#​87685](openclaw/openclaw#87685)) Thanks [@​bdjben](https://github.com/bdjben), [@​liaoandi](https://github.com/liaoandi), and [@​thewilloftheshadow](https://github.com/thewilloftheshadow). - PDF/tools: use ClawPDF for PDF extraction, support encrypted PDF extraction, and surface MCP structured content in agent tool results. ([#​87670](openclaw/openclaw#87670), [#​87751](openclaw/openclaw#87751)) - Providers: add Claude Opus 4.8 support, Fal Krea image model schemas, NVIDIA featured model catalogs, MiniMax streaming music responses, and provider-backed voice model catalogs. ([#​87845](openclaw/openclaw#87845), [#​87890](openclaw/openclaw#87890), [#​80775](openclaw/openclaw#80775), [#​84764](openclaw/openclaw#84764), [#​87794](openclaw/openclaw#87794)) Thanks [@​eleqtrizit](https://github.com/eleqtrizit) and [@​vincentkoc](https://github.com/vincentkoc). - Codex/GitHub: add the GitHub Copilot agent runtime and the Codex Supervisor plugin package. - Plugins: externalize GitHub Copilot and Tokenjuice as official install-on-demand plugins with npm and ClawHub publish metadata. - Workboard: add agent coordination tools for tracking and handing off active agent work. - Discord: show commentary in progress drafts so live Discord runs expose useful in-progress context. ([#​85200](openclaw/openclaw#85200)) - Plugin SDK: add a reply payload sending hook for plugins that need to deliver channel-owned replies and flatten package types for SDK declarations. ([#​82823](openclaw/openclaw#82823), [#​87165](openclaw/openclaw#87165)) Thanks [@​piersonr](https://github.com/piersonr) and [@​RomneyDa](https://github.com/RomneyDa). - Policy: add policy comparison, ingress-channel conformance, and sandbox-posture conformance checks. ([#​85572](openclaw/openclaw#85572), [#​85744](openclaw/openclaw#85744), [#​86768](openclaw/openclaw#86768)) ##### Fixes - Agents: fall back to local config pruning when the optional `agents delete` Gateway probe cannot authenticate, so offline installs can still delete agents without removing shared workspaces. - Tighten phone-control mutation authorization \[AI]. ([#​87150](openclaw/openclaw#87150)) Thanks [@​pgondhi987](https://github.com/pgondhi987). - Clarify directive persistence authorization policy \[AI]. ([#​86369](openclaw/openclaw#86369)) Thanks [@​pgondhi987](https://github.com/pgondhi987). - Agents/Codex: keep spawned agent cwd/workspace state separated, forward ACP spawn attachments, keep hook context prompt-local, release session locks on timeout abort and runtime teardown without deleting live OpenClaw-owned locks during cleanup, avoid session event queue self-wait, clean up exec abort listeners, stream assistant deltas incrementally, recover raw missing-thread compaction failures, preserve rotated compaction session identity, keep compaction-timeout snapshots continuable, preserve shared app-server state across startup or helper failures, keep native hook relay alive across restarts and prune stale bridge files, close native hook relay replacement races, keep Claude live tool progress visible for watchdog recovery, suppress abandoned requester completion handoff, route workspace memory through tools, resolve Codex runtime models first, report quarantined dynamic tools, format `skills` command output, bind node auto-review to prepared plans, retry Claude CLI transcript probes, and bound compaction/steering retries. ([#​87218](openclaw/openclaw#87218), [#​86875](openclaw/openclaw#86875), [#​86123](openclaw/openclaw#86123), [#​88129](openclaw/openclaw#88129), [#​87399](openclaw/openclaw#87399), [#​87375](openclaw/openclaw#87375), [#​72574](openclaw/openclaw#72574), [#​87383](openclaw/openclaw#87383), [#​87400](openclaw/openclaw#87400), [#​83022](openclaw/openclaw#83022), [#​87671](openclaw/openclaw#87671), [#​87738](openclaw/openclaw#87738), [#​87747](openclaw/openclaw#87747), [#​87706](openclaw/openclaw#87706), [#​87546](openclaw/openclaw#87546), [#​87541](openclaw/openclaw#87541), [#​81048](openclaw/openclaw#81048)) Thanks [@​mbelinky](https://github.com/mbelinky), [@​Alix-007](https://github.com/Alix-007), [@​luoyanglang](https://github.com/luoyanglang), [@​yetval](https://github.com/yetval), [@​sjf](https://github.com/sjf), [@​joshavant](https://github.com/joshavant), [@​benjamin1492](https://github.com/benjamin1492), [@​c19354837](https://github.com/c19354837), [@​fuller-stack-dev](https://github.com/fuller-stack-dev), [@​pfrederiksen](https://github.com/pfrederiksen), and [@​dodge1218](https://github.com/dodge1218). - Codex Supervisor: keep real-home app-server MCP session listing on the loaded state path, bound stored history scans, and close WebSocket probes cleanly. - Channels: thread canonical session keys into outbound hooks, preserve Matrix room-id case, keep fallback tool warnings mention-inert, retain delivered Slack final replies during late cleanup, continue iMessage polling after denied reactions, suppress duplicate native exec approvals, resolve Gateway message actions against the active runtime config, preserve Telegram SecretRef prompt config and polling keepalives, preserve WhatsApp profile auth roots, QR display, document filenames, and plugin hook config, suppress Discord recovered tool warnings, preserve the Discord voice outbound helper, cap Discord/Signal/Zalo channel request and container timeouts, and block untrusted Teams service URLs while keeping TeamsSDK patterns aligned. ([#​73706](openclaw/openclaw#73706), [#​75670](openclaw/openclaw#75670), [#​87366](openclaw/openclaw#87366), [#​87451](openclaw/openclaw#87451), [#​87465](openclaw/openclaw#87465), [#​87334](openclaw/openclaw#87334), [#​84535](openclaw/openclaw#84535), [#​76262](openclaw/openclaw#76262), [#​83304](openclaw/openclaw#83304), [#​82492](openclaw/openclaw#82492), [#​87581](openclaw/openclaw#87581), [#​77114](openclaw/openclaw#77114), [#​86426](openclaw/openclaw#86426), [#​85529](openclaw/openclaw#85529), [#​87160](openclaw/openclaw#87160)) Thanks [@​zeroaltitude](https://github.com/zeroaltitude), [@​lukeboyett](https://github.com/lukeboyett), [@​jarvis-mns1](https://github.com/jarvis-mns1), [@​xiaotian](https://github.com/xiaotian), [@​funmerlin](https://github.com/funmerlin), [@​joshavant](https://github.com/joshavant), [@​eleqtrizit](https://github.com/eleqtrizit), [@​heyitsaamir](https://github.com/heyitsaamir), [@​amittell](https://github.com/amittell), [@​lidge-jun](https://github.com/lidge-jun), [@​liorb-mountapps](https://github.com/liorb-mountapps), [@​masatohoshino](https://github.com/masatohoshino), [@​bladin](https://github.com/bladin), and [@​giodl73-repo](https://github.com/giodl73-repo). - CLI/auth/doctor/providers: reject malformed numeric/timeout/subcommand-version inputs, ignore workspace dotenv provider credentials, wait for respawn child shutdown, bound heartbeat defaults plus Codex, GitHub Copilot, OpenAI, Anthropic, Google, Feishu, LM Studio, MiniMax, Xiaomi TTS, and local-provider OAuth/token/model requests, harden Codex auth probes, label auth health by agent, preserve explicit agentRuntime pins during Codex model migration, warm provider auth off the main thread, honor Codex response timeouts, stop migrating current Claude Haiku 4.5 profiles to Sonnet, bound local service startup, resolve GPT-5.5 without cached catalog, migrate legacy memory auto-provider config, rewrite non-canonical `api_key` auth profiles, and make doctor restart follow-ups actionable. ([#​87398](openclaw/openclaw#87398), [#​86281](openclaw/openclaw#86281), [#​87361](openclaw/openclaw#87361), [#​88133](openclaw/openclaw#88133), [#​83655](openclaw/openclaw#83655), [#​87559](openclaw/openclaw#87559), [#​87719](openclaw/openclaw#87719), [#​88088](openclaw/openclaw#88088), [#​85924](openclaw/openclaw#85924), [#​84362](openclaw/openclaw#84362)) Thanks [@​Patrick-Erichsen](https://github.com/Patrick-Erichsen), [@​samzong](https://github.com/samzong), [@​giodl73-repo](https://github.com/giodl73-repo), [@​alkor2000](https://github.com/alkor2000), [@​mmaps](https://github.com/mmaps), [@​nxmxbbd](https://github.com/nxmxbbd), and [@​vincentkoc](https://github.com/vincentkoc). - Gateway/security/session state: expire browser tokens after auth rotation, scope assistant idempotency dedupe, drain probe client closes, avoid stale restart continuation reuse, preserve retry-after fallbacks and stale rate-limit cooldown probes, bound webchat image and artifact transcript scans, include seconds in inbound metadata timestamps, clear completed session active runs, clear stale chat stream buffers, and evict current plugin-state namespaces at row caps. ([#​87810](openclaw/openclaw#87810), [#​87833](openclaw/openclaw#87833), [#​75089](openclaw/openclaw#75089)) Thanks [@​joshavant](https://github.com/joshavant) and [@​litang9](https://github.com/litang9). - Config/parsing/network: reject partial numeric parsing, parse provider/Discord retry headers and dates strictly, honor IPv6 and bare IPv6 `no_proxy` entries, preserve empty plugin allowlists, canonicalize secret target array indexes, and reject malformed media content lengths, inspected TCP ports, marketplace content lengths, cron epochs, sandbox stat fields, unsafe duration values, empty config path segments, noncanonical schema array refs, unsafe Telegram callback pages, and invalid Teams attachment-fetch DNS targets. ([#​87883](openclaw/openclaw#87883)) Thanks [@​zhangguiping-xydt](https://github.com/zhangguiping-xydt). - Browser/input hardening: reject invalid tab indexes, excessive viewport resizes, explicit zero CDP ports, malformed geolocation options, unsafe screenshot or permission-grant timeouts, loose response-body limits, invalid cookie expiries, and non-finite Browser tool delays/timeouts. - Cron/automation: retry recurring jobs after transient model rate limits before waiting for the next scheduled slot, and preflight model fallbacks before skipping scheduled work. ([#​82887](openclaw/openclaw#82887)) Thanks [@​chen-zhang-cs-code](https://github.com/chen-zhang-cs-code). - Auto-reply/directives: respect provider and relayed channel metadata during directive persistence so channel-originated decisions keep their intended context. ([#​87683](openclaw/openclaw#87683)) - WhatsApp: resolve the auth directory from the active profile so profile-scoped WhatsApp installs do not drift to the wrong credential root. ([#​82492](openclaw/openclaw#82492)) Thanks [@​lidge-jun](https://github.com/lidge-jun). - Gateway/session state: clear completed session active runs, avoid cold-loading providers for MCP inventory, cache single-session child indexes, cap handshake timers, and bound preauth, auth-guard, media, transcript, readiness, and port options. - Channels/replies: preserve channel-owned progress callbacks when verbose output is off, keep group-room progress suppression intact, prefer external session delivery context, escape Discord component id delimiters, force final TUI chat repaints, show Slack reasoning previews, and normalize Discord/Matrix/Mattermost channel numeric options. ([#​87476](openclaw/openclaw#87476), [#​87423](openclaw/openclaw#87423)) - Agents/tool args: harden smart-quoted argument repair for edit arrays and exact escaped arguments so model-produced tool calls recover without corrupting valid input. ([#​86611](openclaw/openclaw#86611)) Thanks [@​ferminquant](https://github.com/ferminquant). - Providers/agents: preserve seeded Anthropic signatures, preserve signed thinking payloads, concatenate signature-delta chunks, preserve DeepSeek `reasoning_content` replay across tier suffixes, apply OpenRouter strict9 ids to Mistral routes, promote Ollama plain-text tool calls, load NVIDIA featured model catalogs, stream MiniMax music generation responses, and recover empty preflight compaction. ([#​87593](openclaw/openclaw#87593), [#​87493](openclaw/openclaw#87493), [#​80775](openclaw/openclaw#80775), [#​84764](openclaw/openclaw#84764)) Thanks [@​Pluviobyte](https://github.com/Pluviobyte) and [@​eleqtrizit](https://github.com/eleqtrizit). - Media/images: skip CLI image cache refs when resolving generated images, allow trusted generated HTML attachments, and bound generated video downloads so stale refs and slow providers fail cleanly. ([#​87523](openclaw/openclaw#87523), [#​87982](openclaw/openclaw#87982)) - File transfer: handle late tar stdin pipe errors after archive validation or unpacking has already settled. - Performance: trust install-record caches between reloads, prefer native JSON parsing, reuse unchanged tool-search catalogs, reuse gateway session and plugin metadata paths, skip unchanged store serialization, patch single-entry session writes, add precomputed session patch writers, reduce store clone allocations, cache manifest model catalog rows and auto-enabled plugin config, avoid full session snapshots for entry reads, defer configured Slack full startup, prefer bundled plugin dist entries, and slim current metadata identity caches. ([#​87760](openclaw/openclaw#87760)) - Docker/release/QA: package runtime workspace templates, stream cross-OS served artifacts, preserve sparse Crabbox run artifacts, isolate npm plugin installs per package, reject incompatible package plugin API installs, drop the leftover root Sharp dependency from package manifests after the Rastermill migration, bound OpenClaw instance logs, plugin gauntlet relay logs, MCP channel buffers, kitchen-sink scans, agent-turn assertions, QA-Lab credential broker calls, QA Matrix substrate requests, and release scenario logs, and keep release/google live guards current. ([#​87647](openclaw/openclaw#87647), [#​87477](openclaw/openclaw#87477)) Thanks [@​rohitjavvadi](https://github.com/rohitjavvadi) and [@​vincentkoc](https://github.com/vincentkoc). - Release/CI: bound manual git fetches, ClawHub verifier responses, ClawHub owner metadata, dependency-guard error bodies, Parallels limits, startup/test/memory budget parsing, and diffs viewer build warnings so release lanes fail with useful proof instead of hanging. ([#​87839](openclaw/openclaw#87839)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDEuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEwMS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> Reviewed-on: https://git.erwanleboucher.dev/eleboucher/homelab/pulls/759
Summary: - Replace the legacy iOS shell with Pro Command, Chat, Agents, and Settings tabs. - Wire iOS chat/session/settings/diagnostics and realtime Talk flows through gateway-backed APIs. - Add gateway/session and shared chat coverage for the new iOS flow. Verification: - git diff --check - node scripts/run-vitest.mjs src/gateway/server.sessions.create.test.ts src/gateway/talk-realtime-relay.test.ts - swift test --filter ChatViewModelTests (apps/shared/OpenClawKit) - xcodebuild build for Nimrod's iPhone succeeded; install succeeded; launch was blocked because the phone was locked Known follow-up: - Preserve traceLevel in sessions.create parent runtime inheritance and keep the changelog credit in the follow-up patch.
Summary: - Replace the legacy iOS shell with Pro Command, Chat, Agents, and Settings tabs. - Wire iOS chat/session/settings/diagnostics and realtime Talk flows through gateway-backed APIs. - Add gateway/session and shared chat coverage for the new iOS flow. Verification: - git diff --check - node scripts/run-vitest.mjs src/gateway/server.sessions.create.test.ts src/gateway/talk-realtime-relay.test.ts - swift test --filter ChatViewModelTests (apps/shared/OpenClawKit) - xcodebuild build for Nimrod's iPhone succeeded; install succeeded; launch was blocked because the phone was locked Known follow-up: - Preserve traceLevel in sessions.create parent runtime inheritance and keep the changelog credit in the follow-up patch.
Summary
Refs #85731
Screenshots
Hosted as external visual-proof artifacts in GitHub Gist https://gist.github.com/Solvely-Colin/350e74c44ec7b7324e83c131e54a295e. These screenshots are not committed to the PR branch or any OpenClaw repo branch.
Local iOS Demo Proof
Local Mantis-style simulator proof is hosted on fork artifact commit f07a478eadc2. These files are not committed to this PR branch or any OpenClaw repo branch.
Covered: gateway connected before recording, Settings/Command/Agents/Chat tabs, fresh chat session via
/new,hellosend with assistant reply, and realtime talk start/stop. Gateway proof logs showedchat.history,agent.wait,talk.session.create,session.ready,talk.session.appendAudio, andsession.closedduring the capture.Verification
git diff --checkxcodebuildmcp build_sim -skipPackagePluginValidationstatus: SUCCEEDEDxcodebuildmcp test_sim -skipPackagePluginValidation213 passed, 0 failed, 0 skippedxcresult: /Users/solvely/Library/Developer/XcodeBuildMCP/workspaces/openclaw-41259b75abfe/result-bundles/test_sim_2026-05-27T17-36-31-133Z_pid12709_89151393.xcresultnode scripts/run-vitest.mjs src/gateway/server.sessions.create.test.ts src/gateway/talk-realtime-relay.test.tsTest Files 4 passed (4)Tests 56 passed (56)AUTOREVIEW_AUTO_TESTS=0 .agents/skills/autoreview/scripts/autoreview --mode branchautoreview clean: no accepted/actionable findings reportedLatest Proof Update
Patch head:
ba8b490a70origin/main(316fd5b625) so the stalegpt-5.5CI failure path uses current main's model-catalog/test behavior.pnpm protocol:checkpassed after rebase; it regenerateddist/protocol.schema.jsonand shared Swift protocol output, thengit diff --exit-codefound no generated drift.checks-node-agentic-agentsnow passes locally after the rebase:node scripts/run-vitest.mjs src/agents/embedded-agent-runner/model.test.ts -t "builds an openai fallback for gpt-5.5 when the live catalog cache is cold" --reporter=verbose(2 passed | 192 skipped).git diff --checkpassed.xcodebuildmcp build_run_simpassed on iPhone 17 Pro simulator forOpenClawDebug, focused-input simulator smoke kept the composer visible, and local autoreview reported no accepted/actionable findings.Real Behavior Proof
Behavior addressed: iOS pro UI connects through the gateway for chat, voice, session/status surfaces, and settings diagnostics.
Real environment tested: Colin's iPhone installed with the iOS app, paired to OpenClaw gateway
2026.5.26, plus iPhone 17 Pro simulator visual/build/test pass.Exact steps or command run after this patch: installed app on phone, sent a chat message, started/stopped voice, checked gateway logs, ran simulator build/test, ran focused gateway tests, captured light/dark screenshots for each tab.
Evidence after fix: external light/dark screenshots are embedded above; gateway runtime proof is copied below.
Observed result after fix: chat send completed through
agent.wait, chat history refreshed, realtime talk session was created, produced transcript/text/audio events, and closed cleanly.What was not tested: App Store/TestFlight distribution; proof is limited to local simulator validation and Colin's directly installed iPhone build.