forked from openclaw/openclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappcast.xml
More file actions
2151 lines (2151 loc) · 283 KB
/
Copy pathappcast.xml
File metadata and controls
2151 lines (2151 loc) · 283 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" standalone="yes"?>
<rss xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" version="2.0">
<channel>
<title>OpenClaw</title>
<item>
<title>2026.7.1</title>
<pubDate>Tue, 14 Jul 2026 01:57:48 +0000</pubDate>
<link>https://raw.githubusercontent.com/openclaw/openclaw/main/appcast.xml</link>
<sparkle:version>2607000190</sparkle:version>
<sparkle:shortVersionString>2026.7.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>15.0</sparkle:minimumSystemVersion>
<description><![CDATA[<h2>OpenClaw 2026.7.1</h2>
<h3>Highlights</h3>
<ul>
<li><strong>New models and providers:</strong> add Featherless, Claude Sonnet 5 and Mythos 5, Meta Muse Spark 1.1, and ClawRouter; make GPT-5.6 the new-setup default with <code>/think ultra</code> for Sol and Terra plus <code>max</code> for Luna, honor Z.AI <code>max</code>, and refresh model availability after OAuth renewal. (#101092, #98254, #101238, #102873, #103070, #103163, #99658, #99759, #98333, #103581, #98021, #104778, #102289) Thanks @vincentkoc, @vortexopenclaw, @HamidShojanazeri, @davemorin, @Solvely-Colin, @jalehman, @steipete-oai, @bdjben, @obviyus, @sallyom, @anyech, @100yenadmin, and @fuller-stack-dev.</li>
<li><strong>Control UI and native macOS chat:</strong> make sessions primary with a minimal searchable sidebar, compact context ring, reasoning-effort slider, cleaner dashboard chrome, and a native macOS session browser with model and thinking pickers, slash commands, transcript export, and context usage. (#99289, #99838, #100386, #101103, #101497)</li>
<li><strong>Conversational onboarding:</strong> Crestodian now runs a real agent-loop setup across the CLI, web install, and macOS app, with AI-guided provider setup, model-judged approvals bound to exact operations, masked credential prompts, and deterministic fallback when no model is available. (#99935, #100029, #100656, #101887) Thanks @fuller-stack-dev.</li>
<li><strong>Offline and spoken mobile chat:</strong> iOS and Android now pre-paint bounded per-gateway session and transcript caches offline; Apple Watch gains full voice turns, and iOS can speak replies through configured Gateway TTS with on-device fallback. (#100219, #100227, #100283, #100770, #100771)</li>
<li><strong>Session organization and generated titles:</strong> generate concise session titles through utility-model routing and add Gateway-backed groups, unread state, rename, fork, archive, and delete controls, plus group management across web, iOS, and Android. (#87643, #100814, #101117, #101234) Thanks @zhangguiping-xydt and @Juliangsm.</li>
<li><strong>Telegram and Codex continuity:</strong> pair Codex through private <code>/login</code>, steer active runs with <code>/steer</code> and <code>/tell</code>, preserve messages when transcript acknowledgement is missing, adopt durable turns safely, and recover final sends across Telegram formatting and flood-wait failures. (#98006, #98126, #98786, #103664, #103916) Thanks @100yenadmin, @Kyzcreig, @obviyus, and @jalehman.</li>
<li><strong>Startup and upgrade recovery:</strong> run container migrations before Gateway readiness, stop recoverable legacy state from blocking startup, and enter control-plane-safe mode after repeated unclean boots instead of restart flapping. (#101881, #104529) Fixes #98565 Thanks @sallyom, @jacobtomlinson, @bdjben, @obviyus, and @shakkernerd.</li>
</ul>
<h3>Changes</h3>
<ul>
<li><strong>Meta provider:</strong> add bundled <code>muse-spark-1.1</code> Responses API support with streaming, tool calls, encrypted reasoning replay, onboarding, exact-model live validation, and standalone npm/ClawHub distribution as <code>@openclaw/meta-provider</code>. (#102873, #103070, #103163) Thanks @HamidShojanazeri, @davemorin, @Solvely-Colin, @jalehman, and @vincentkoc.</li>
<li><strong>Android chat agent selector:</strong> switch the active agent directly from the live chat screen while keeping chat, Talk mode, and home canvas on the same canonical session. (#80422) Thanks @bcperry and @joshavant.</li>
<li><strong>Gateway host status:</strong> show the connected Gateway's host, network address, OS, runtime, uptime, CPU, memory, and disk details in Control UI Settings. (#100478)</li>
<li><strong>Gateway crash-loop recovery:</strong> persist boot outcomes, enter control-plane-safe mode after repeated unclean starts, hold transport and provider activation until recovery, and exit with <code>EX_CONFIG</code> for fatal configuration errors so systemd and launchd stop restart flapping. Thanks @obviyus.</li>
<li><strong>iOS offline chat:</strong> pre-paint recent sessions and canonical transcripts from a protected, bounded per-gateway cache, keep sending disabled offline, and purge cached conversation text when pairing is reset. (#100219)</li>
<li><strong>Slack progress indicators:</strong> use Slack's native assistant thread status and rotating loading messages by default while keeping acknowledgement reactions static; lifecycle reaction updates now require <code>messages.statusReactions.enabled: true</code>.</li>
<li><strong>Control UI Talk controls:</strong> keep voice, model, sensitivity, and other realtime defaults in Settings → Communications → Talk, and use the composer microphone caret to select any browser audio input. (#101046)</li>
<li><strong>Cron model selection:</strong> choose an agent-turn model in Control UI Quick Create and show configured or default models in cron job rows and details. (#95341) Thanks @ly85206559.</li>
<li><strong>Control UI GitHub previews:</strong> show issue and pull request state, title, author, activity, comments, and change statistics in hover and keyboard-focus cards. (#100434)</li>
<li><strong>Logbook work journal:</strong> add a disabled-by-default bundled plugin that turns paired-node screen snapshots into a private timeline, daily standup, and timeline-grounded Q&A in a plugin-contributed Control UI tab. (#99930)</li>
<li><strong>Control UI message context:</strong> reveal per-message token, context, and model details from the timestamp on hover or activation instead of showing a separate Context button.</li>
<li><strong>Control UI session titles:</strong> reveal truncated recent-session names with a reduced-motion-safe hover animation.</li>
<li><strong>Control UI sidebar navigation:</strong> show a small customizable pinned destination set, keep the remaining pages under More, move Settings to the footer, and persist sidebar customization in the browser. (#100296) Thanks @vincentkoc.</li>
<li><strong>Control UI sidebar usage:</strong> remove the provider usage quota row from the expanded sidebar while keeping usage details available in the chat composer and Usage page. Thanks @shakkernerd.</li>
<li><strong>Android chat code highlighting:</strong> render fenced Kotlin, Swift, TypeScript, JavaScript, Python, Bash, and JSON blocks with bounded, theme-aware syntax colors while preserving plain rendering for unknown, partial, or oversized blocks. (#100217)</li>
<li><strong>Gateway TTS playback:</strong> add an operator-scoped <code>tts.speak</code> RPC that returns configured-provider speech as inline whole-clip audio for remote clients. (#100770)</li>
</ul>
<ul>
<li><strong>Control UI context usage:</strong> show context-window progress, latest-run input/output tokens, and the active model when the chat context ring is opened.</li>
<li><strong>Apple Watch voice turns:</strong> dictate a message from the Watch chat and hear the new OpenClaw reply spoken on the Watch, with explicit silent-message and stop-speaking controls. (#100224) Thanks @vincentkoc.</li>
<li><strong>Conversational onboarding:</strong> add a real agent-loop Crestodian setup flow across the CLI, Gateway, web install, and macOS app, with typed operations, exact approval binding, masked credential prompts, isolated session transcripts, and safe handoff to the normal agent. Thanks @vincentkoc.</li>
<li><strong>Generated session titles:</strong> name new Control UI sessions from their first message, and add default/per-agent <code>utilityModel</code> routing for lower-cost session, topic, and thread title generation. Thanks @Juliangsm, @zhangguiping-xydt, and @vincentkoc.</li>
<li><strong>ClawRouter routing and quotas:</strong> add the bundled ClawRouter provider plugin with credential-scoped dynamic model discovery, OpenAI-compatible and native Anthropic/Gemini transports, and managed budget reporting across OpenClaw usage surfaces. (#99658)</li>
<li><strong>Model and provider coverage:</strong> add GPT-5.6 support, use Nemotron Super's 1M context window, and preserve explicit OpenRouter authentication headers. (#98333, #98726, #98187) Thanks @steipete-oai, @eleqtrizit, @sunlit-deng, @laurencebrown, and @shakkernerd.</li>
<li><strong>CLI and node workflows:</strong> add <code>openclaw attach</code>, node context-path support, actionable device-approval recovery guidance, soft-resume CLI sessions when prompt metadata changes, and clearer plugin install exit diagnostics. (#96454, #97679, #98115, #98146, #98497, #99822) Thanks @anagnorisis2peripeteia, @obviyus, @wm0018, @welfo-beo, @RomneyDa, @Sanjays2402, and @vincentkoc.</li>
<li><strong>Cron and usage:</strong> add exit-triggered schedules, detached session-targeted runs, and an in-flight job doctor warning, while making the existing usage footer easier to wrap on Telegram. (#92037, #98755, #98620, #92877) Thanks @anagnorisis2peripeteia, @obviyus, @EthanSK, @masatohoshino, @Marvinthebored, and @vincentkoc.</li>
<li><strong>Native apps and localization:</strong> modernize iOS presentation, Chat, Talk, onboarding, and reconnect flows; add Gateway speech providers; improve QR onboarding and protocol recovery; install the local Gateway from macOS; localize core Apple and Android surfaces; and add Swedish mobile localization. (#98452, #98736, #99243, #98376, #98302, #98385, #99767, #97110, #97111, #97112, #97113, #98043) Thanks @jcooley8, @Tony-ooo, @joelnishanth, @cursoragent, @joshavant, @vincentkoc, and @yeager.</li>
<li><strong>Messaging capabilities:</strong> add native iMessage polls, Telegram Codex pairing and steering, Telegram multi-lane progress summaries, and Signal target aliases. (#98421, #98006, #98126, #98907, #95738) Thanks @omarshahine, @lobster, @100yenadmin, @Kyzcreig, @Marvinthebored, and @jesse-merhi.</li>
<li><strong>Local inference and chat controls:</strong> auto-discover Ollama inference nodes, add Control UI session-first navigation, reasoning controls, and command picking, and keep OpenClaw control tools available when deferred tool search selects the wrong tool family. (#99234, #99289, #99426, #99838, #99561) Thanks @100yenadmin, @joshavant, @VicZhang6, @Solvely-Colin, and @vincentkoc.</li>
<li><strong>Doctor and diagnostics:</strong> expose auth-profile, workspace, device-pairing, channel-plugin, memory-provider, systemd exhaustion, and Windows LAN firewall findings. (#97125, #97358, #97366, #97496, #97968, #98291, #98666) Thanks @giodl73-repo, @masatohoshino, and @joshavant.</li>
<li><strong>Policy repair previews:</strong> show review-required Gateway bind and denied node-command changes during <code>doctor --fix</code> without applying them or counting the findings as repaired. (#99776) Thanks @giodl73-repo.</li>
<li><strong>Conversation and review controls:</strong> prepare scoped conversation capability profiles and add Cursor Agent as an autoreview engine. (#98536, #97348) Thanks @hxy91819.</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><strong>Codex runtime switching:</strong> accept the bundled Codex runtime for both <code>codex/*</code> and <code>openai/*</code> model routes while keeping unsupported provider/runtime pairs rejected. (#103762)</li>
<li><strong>LM Studio and xAI repaired tool calls:</strong> emit the terminal tool-call event before completion when promoting serialized plain-text tool calls, preserving the complete streaming lifecycle for consumers.</li>
<li><strong>Browser actions on Node 24:</strong> keep browser request cancellation bound to the client and response lifetime instead of Node 24.16+'s prematurely aborted body-stream signal, preventing valid POST actions from failing after JSON parsing. Thanks @obviyus and @vincentkoc.</li>
<li><strong>SecretRef model credentials:</strong> keep resolved provider secrets behind process-local sentinels through auth storage, stream setup, SDK configuration, and managed local-provider probing, then inject plaintext only at the final network or provider-plugin boundary while retaining exact-value log redaction. (#102008, #102009)</li>
<li><strong>Telegram token redaction:</strong> redact bot tokens even when log transports split them across chunks, preventing fragmented credentials from escaping structured and streamed logs. (#103861) Thanks @vincentkoc.</li>
<li><strong>Telegram durable turn adoption:</strong> complete spooled updates only after durable agent adoption, detach adopted turns from the ingress reply fence, and suppress superseded replies so recovery cannot leak stale or duplicate responses. (#103664, #103952, #103965) Thanks @obviyus and @vincentkoc.</li>
<li><strong>Task delivery recovery:</strong> normalize legacy delivery statuses while restoring task records so older queued work becomes runnable instead of aborting registry recovery. (#103946) Fixes #103168 Thanks @bek91, @theo674, and @obviyus.</li>
<li><strong>Diagnostics provider evidence:</strong> emit one deduplicated <code>provider.request</code> timeline event for every completed or failed model call, so opt-in timelines can prove real provider traffic without double-counting terminal paths. Fixes #103063 Thanks @vincentkoc.</li>
<li><strong>Lean local model shell access:</strong> keep <code>exec</code> directly visible beside the default structured Tool Search controls so coding-tuned local models can use their shell fallback instead of searching for missing domain tools. (#101607) Thanks @vincentkoc and @maweibin.</li>
<li><strong>OAuth refresh contention diagnostics:</strong> keep local lock paths out of user-facing refresh failures and avoid duplicate failure prefixes while preserving structured provider and profile classification. (#101573) Thanks @vincentkoc.</li>
<li><strong>Exec approval prompts:</strong> keep background-disabled fallback warnings out of pending gateway/node approvals and show them only after a command actually runs in the foreground. (#101561) Thanks @vincentkoc.</li>
<li><strong>Direct poll delivery:</strong> route direct and hybrid channel polls through the owning outbound adapter while preserving gateway-mode routing and channel option checks. (#99950) Thanks @NianJiuZst and @shakkernerd.</li>
<li><strong>Agent wait hard-timeout snapshots:</strong> preserve canonical hard-timeout phase and timestamps when the outer <code>agent.wait</code> timer wins the retry-grace race, while leaving queue, draining, and restart-cancelled waits correctable. (#89367) Thanks @Pick-cat and @sunnydongbo.</li>
<li><strong>Control UI typed approvals:</strong> send <code>/approve</code> commands immediately through the authorized Gateway command path while an agent run is blocked instead of queueing the command behind that run. (#101532) Thanks @vincentkoc.</li>
<li><strong>Microsoft Teams Graph response bounds:</strong> cap successful file-upload and chat JSON reads so oversized Microsoft Graph responses cannot be buffered without limit. (#97784) Thanks @Alix-007.</li>
<li><strong>Packaged speech runtime:</strong> stop treating package-backed <code>speech-core</code> as a bundled plugin sidecar, restoring TTS startup in npm installs while release checks keep true activation-bypassing facades package-complete. (#89899, #89425) Thanks @zhangguiping-xydt, @ant1b0t, and @vincentkoc.</li>
<li><strong>Container image upgrades:</strong> run versioned state migrations and plugin convergence before Gateway readiness when reusing mounted state, failing closed with <code>doctor --fix</code> recovery guidance instead of serving half-upgraded state. (#101881) Fixes #98565 Thanks @sallyom, @jacobtomlinson, and @shakkernerd.</li>
<li><strong>Plugin update reliability:</strong> preserve plugins successfully switched through ClawHub during core updates instead of processing them a second time and disabling them after a redundant transient failure. (#105405) Thanks @vincentkoc.</li>
<li><strong>Codex app-server protocol:</strong> require app-server 0.143 or newer, remove pre-0.142 wire-shape compatibility, migrate retired <code>on-failure</code> approval settings to <code>on-request</code> in Codex configuration and saved bindings, teach Codex to retrieve deferred native <code>spawn_agent</code> through <code>tool_search</code> so native subagent task mirroring works on search-capable models, and update the managed runtime to 0.144.1 for code-mode host installation and missing-host fallback reliability. Thanks @vincentkoc.</li>
<li><strong>Android hardware keyboard chat:</strong> send with unmodified Enter on physical keyboards while preserving Shift+Enter and other modified Enter combinations for multiline input. (#101239) Thanks @3ninyt3nin-creator and @vincentkoc.</li>
<li><strong>CJK Markdown emphasis:</strong> render adjacent Chinese, Japanese, and Korean emphasis punctuation through the shared Markdown pipeline instead of leaking literal markers across channels. (#101230, #101120) Thanks @nicknmorty and @j08577600-jpg.</li>
<li><strong>Backup retry cleanup:</strong> close partial archive output handles and isolate each retry path after live-write failures, preventing Windows <code>EBUSY</code> locks from cascading across attempts or leaving stale temp archives. (#101449, #101464) Thanks @ZOOWH, @LiLan0125, @vincentkoc, @aniruddhaadak80, @shakkernerd, and @obviyus.</li>
<li><strong>Codex yielded native subagents:</strong> keep the parent app-server subscription and shared client alive until yielded native subagent completion delivery settles, preventing lost wakeups and leaked one-shot cleanup. Thanks @vincentkoc.</li>
<li><strong>Delivery recovery pacing:</strong> pace eligible outbound and restart-continuation replays after gateway startup so outage backlogs do not burst into channel rate limits, while preserving the wall-clock recovery budget. (#101118, #101058) Thanks @ZengWen-DT, @aniruddhaadak80, and @vincentkoc.</li>
<li><strong>Outbound pre-connect recovery:</strong> clear stale platform-send evidence atomically when a connect or DNS failure proves no request was sent, allowing queued Discord and other channel messages to replay after connectivity returns without weakening the unknown-send duplicate guard. (#101024, #100979) Thanks @SunnyShu0925 and @tiffanychum.</li>
<li><strong>Discord streamed finals:</strong> send completion replies as fresh messages so inactive channels become unread, while preserving targeted mentions without escalating <code>@everyone</code> or <code>@here</code>. (#99711, #99662) Thanks @davelutztx and @xena68.</li>
<li><strong>OpenAI-compatible SSE parsing:</strong> recognize event streams mislabeled as JSON without prepending a second <code>data:</code> prefix, preserving valid streamed responses from non-conforming providers. (#96503) Thanks @ZengWen-DT and @54meteor.</li>
<li><strong>Meta Model API contract:</strong> use the current Meta endpoint and output-token field so <code>muse-spark-1.1</code> validation and live requests match the provider contract. (#103680) Fixes #103667 Thanks @vincentkoc, @HamidShojanazeri, @davemorin, @Solvely-Colin, and @jalehman.</li>
<li><strong>LM Studio embedding preload:</strong> honor model- and provider-level context-window limits when preloading embedding models, preventing avoidable GPU out-of-memory failures. (#100750) Thanks @zak-li, @ZOOWH, and @hxz398.</li>
<li><strong>Provider overload messaging:</strong> keep rate-limited responses classified for retry and fallback behavior while using overload wording when the provider supplies no explicit retry detail. (#98165) Thanks @SunnyShu0925.</li>
<li><strong>Microsoft Teams attachment metadata:</strong> bound Bot Framework <code>attachmentInfo</code> JSON reads and cancel oversized streams before they can exhaust Gateway memory. (#99125) Thanks @ly85206559.</li>
<li><strong>Agent auth copy order:</strong> preserve the source agent's portable auth-profile precedence when copying credentials to a new agent while excluding skipped profiles and transient auth state. (#100833) Thanks @machine3at.</li>
<li><strong>Memory session repair:</strong> keep daily dreaming ingestion bookkeeping outside session-corpus audit and repair so <code>memory status --fix</code> preserves healthy daily state. (#93389) Thanks @Alix-007 and @vincentkoc.</li>
<li><strong>Remote browser CDP policy:</strong> allow the configured CDP control host through an existing hostname allowlist without widening page navigation policy, while keeping strict-policy discovery bound to the configured control authority. (#100986, #100819) Thanks @NianJiuZst, @SarinV, and @vincentkoc.</li>
<li><strong>Config unset diagnostics:</strong> explain when an inherited or default configuration value cannot be unset instead of reporting a misleading successful deletion. (#96557) Thanks @moeghashim.</li>
<li><strong>Crestodian command probes:</strong> contain stdout and stderr stream failures while keeping child-process close and spawn errors authoritative, preventing unhandled probe crashes. (#100741) Thanks @lsr911.</li>
<li><strong>Feishu mention forwarding:</strong> fail closed when the bot Open ID is unavailable so group messages cannot be misclassified as explicit bot mentions. (#100891) Thanks @zhangguiping-xydt.</li>
<li><strong>Cron edit delivery:</strong> preserve each job's implicit delivery mode when applying partial delivery updates, so disabling best-effort delivery no longer turns detached job announcements off. (#100846) Thanks @machine3at and @vincentkoc.</li>
<li><strong>Control UI session creation:</strong> keep newly created sessions at the front of the stable sidebar order after selecting another session. Thanks @shakkernerd.</li>
<li><strong>Control UI file previews:</strong> keep large Skill Workshop files responsive with cached, offscreen-contained text chunks while preserving wrapped content, stable file switching, full-file copy, and clean focus behavior. (#101319) Thanks @xianshishan, @shakkernerd, and @vincentkoc.</li>
<li><strong>FTS-only memory startup:</strong> skip plugin capability discovery when <code>memorySearch.provider</code> is explicitly <code>none</code>, avoiding an unnecessary cold-start scan.</li>
<li><strong>Control UI agent model labels:</strong> show each selected agent's effective model in the Default picker option instead of the global model. (#100719, #77440) Thanks @hyspacex and @jwong-art.</li>
<li><strong>Control UI inbound image previews:</strong> render canonical inbound media references through the authenticated ticket route after chat-history reloads. (#100725, #89591) Thanks @sweetcornna, @vergissberlin, and @shakkernerd.</li>
<li><strong>Small-context compaction:</strong> cap the effective reserve against the known model context window so small local models do not enter compaction from the first token. (#100621) Thanks @vincentkoc.</li>
<li><strong>Detail-less provider failures:</strong> keep opaque upstream failures from cooling API-key auth profiles while preserving WHAM-backed OpenAI OAuth health checks and configured model fallback. (#100617) Thanks @fabasi, @fengjikui, and @vincentkoc.</li>
<li><strong>Plugin install diagnostics:</strong> suppress the misleading hook-pack fallback after plugin install failures only when the hook manifest is absent, while preserving actionable malformed hook-pack errors. (#100554) Thanks @vincentkoc and @obviyus.</li>
<li><strong>Config validation diagnostics:</strong> emit each unchanged sanitized validation-warning payload once per config path, reset deduplication after a clean validation, and preserve the warning fingerprint across transient invalid reads and failed refreshes. (#100569, #25574) Thanks @vincentkoc and @mcaxtr.</li>
<li><strong>Config size-drop guard:</strong> compare writes against canonical bytes for parseable object configs instead of raw BOM and indentation overhead, while preserving raw audit telemetry and the conservative malformed-input fallback. (#100591, #71865) Thanks @vincentkoc and @balric-seo.</li>
<li><strong>Control UI coalesced updates:</strong> show a clear queued-restart completion banner when an update joins an already-running Gateway restart. (#93082) Thanks @goutamadwant and @motacola.</li>
<li><strong>Control UI connection errors:</strong> preserve structured pairing and authentication failures for pending RPC callers while keeping generic disconnect behavior unchanged. (#54758) Thanks @ruanrrn.</li>
<li><strong>iOS embedded terminal:</strong> open the terminal-only Control surface directly while native Gateway authentication connects instead of exposing the Web UI login screen.</li>
<li><strong>TUI startup status:</strong> show <code>starting up</code> during post-connect initialization without overwriting active-run or reconnect state. (#93999) Thanks @ml12580 and @sanjarcode.</li>
<li><strong>Control UI restart recovery:</strong> recover stale bundle pages through a bounded whole-document refresh after Gateway updates or restarts. (#99111) Thanks @ZengWen-DT and @ITOrity.</li>
<li><strong>TUI active Gateway ports:</strong> follow the verified active local Gateway port when no explicit URL, port, or remote target is configured. (#73338, #42461) Thanks @haishmg, @vincentkoc, and @jackm1688.</li>
<li><strong>Apple chat run recovery:</strong> restore active responses from canonical Gateway history after reconnects, foreground resumes, and event gaps, while preserving gateway user-turn identity across Codex and Copilot transcript mirrors to prevent duplicate rows. (#100277)</li>
<li><strong>Claude CLI streamed replies:</strong> preserve assistant text already received from Claude CLI when its terminal result envelope is empty, preventing false empty-response failover after a complete streamed answer. (#90450) Thanks @totobusnello.</li>
<li><strong>Phone identity normalization:</strong> canonicalize stray plus signs, preserve non-phone iMessage handles, and reject digit-free Signal identities across shared channel routing. (#100467) Thanks @morluto.</li>
<li><strong>Tlon scry response bounds:</strong> cap successful Urbit scry JSON reads and cancel oversized streams instead of buffering unbounded peer responses. (#100376) Thanks @hugenshen.</li>
<li><strong>Source build portability:</strong> keep tsdown configuration self-contained so builds do not depend on resolving the tsdown package from unrun's temporary module directory. Thanks @vincentkoc.</li>
<li><strong>Agent tool-call decoding:</strong> preserve surrogate-range numeric HTML entities as literal text while still decoding valid supplementary-plane values, preventing malformed model output from injecting lone UTF-16 surrogates into tool arguments. (#99564) Thanks @mikasa0818, @vincentkoc, @shakkernerd, and @maweibin.</li>
<li><strong>Gateway event dispatch:</strong> catch and log lazy subscriber setup and handler failures instead of leaking unhandled promise rejections. (#100401) Thanks @cxbAsDev.</li>
<li><strong>Ollama fallback routing:</strong> classify incomplete native streams through the Ollama provider hook so configured model fallbacks can advance. (#100482) Thanks @TurboTheTurtle, @8kfcf95jvp-oss, and @vincentkoc.</li>
<li><strong>Diffs rendering:</strong> render viewer and image output from one SSR preload, preserve language-pack highlighting through hydration, normalize language hints case-insensitively, skip identical before/after inputs with an explicit <code>changed</code> result, report truthful file-render and input errors, cache hash-pinned viewer runtimes, and prefer canonical file settings over stale aliases. (#100487) Thanks @vincentkoc.</li>
<li><strong>Remote browser reliability:</strong> bound persistent Playwright tab enumeration by the existing remote CDP timeout budget and retire timed-out connection attempts so late completions cannot restore a stuck connection. (#80147, #58968) Thanks @HemantSudarshan and @KeaneYan.</li>
<li><strong>Browser attachment downloads:</strong> return managed URL, filename, and path metadata when direct Playwright navigation starts an attachment download, while validating final URLs before saving bytes and preserving single-owner explicit downloads. (#48045, #89416) Thanks @zhangguiping-xydt and @roinou532.</li>
<li><strong>Browser action downloads:</strong> return managed URL, filename, and path metadata when agent actions trigger downloads, while preserving explicit ownership, validating final URLs before saving bytes, and quarantining policy-denied tabs without closing them. (#93250, #93307) Thanks @sunlit-deng and @scorpiord.</li>
<li><strong>Managed browser cookie persistence:</strong> initialize new isolated macOS headless profiles with a non-interactive encryption key while preserving existing profile keys, and close Chromium through CDP before bounded signal fallback so persistent logins survive graceful browser and Gateway restarts. (#96704, #98284) Thanks @TurboTheTurtle and @shakkernerd.</li>
<li><strong>MCP OAuth response bounds:</strong> reject body-less foreign error bodies without calling their inherently unbounded <code>text()</code> fallback, while preserving HTTP status and headers for safe SDK diagnostics. (#98143) Thanks @Pick-cat, @wangmiao0668000666, and @vincentkoc.</li>
<li><strong>Tlon image upload bounds:</strong> cap remote image fetches before upload and fail closed on oversized or stalled responses instead of buffering them without a limit. (#100374) Thanks @hugenshen.</li>
<li><strong>Control UI approval prompts:</strong> keep stale resolve failures and busy-state cleanup from leaking across newer approvals or Gateway reconnects. (#98394) Thanks @haruaiclone-droid.</li>
<li><strong>macOS service SecretRefs:</strong> preserve generated env-file values for SecretRefs that remain in config when stale Gateway LaunchAgents are repaired or reinstalled without those variables in the invoking shell. (#99124) Thanks @mushuiyu886 and @1Wanker.</li>
<li><strong>Anthropic OAuth callbacks:</strong> keep the provider-required <code>localhost</code> redirect URI stable while allowing the local callback listener to bind an explicit loopback host. (#96917) Thanks @xialonglee, @riazrahaman, and @vincentkoc.</li>
<li><strong>Prompt-release media delivery:</strong> accept active-leaf-preserving side appends while an embedded run temporarily releases its session lock, so successive message-tool media replies merge without a false session-takeover failure. (#100490) Thanks @scotthuang and @vincentkoc.</li>
<li><strong>Control UI Skills filters:</strong> align agent and search controls, use translated labels, and preserve native checkbox and radio sizing. (#100526) Thanks @evan-YM and @vincentkoc.</li>
<li><strong>Control UI completed-run state:</strong> bind active and completed updates to run identities so stale completions keep Send available while newer runs remain active. (#100527) Thanks @tiffanychum, @davidstoll, and @shakkernerd.</li>
<li><strong>Control UI context usage:</strong> keep stale cached totals visible as approximate without triggering warning styling or Compact actions. (#89772) Thanks @bladin and @snsczssl.</li>
<li><strong>Control UI file previews:</strong> remove the duplicate Escape header hint while retaining the Close-button shortcut hint and Escape behavior. (#100528) Thanks @xianshishan and @vincentkoc.</li>
<li><strong>Control UI autonomous tool failures:</strong> preserve an earlier Tool error outcome across later autonomous recovery turns. (#100514) Thanks @qingminglong and @yetval.</li>
<li><strong>Agent empty replies:</strong> surface a visible failure when a completed interactive turn has no deliverable reply, including queued follow-ups, while preserving explicit silence, pending continuations, and committed side effects, honoring queued send policies, and treating compaction notices as progress. (#100456) Thanks @mushuiyu886 and @grox2012.</li>
<li><strong>Subprocess, maintenance, and output hardening:</strong> keep child output failures from crashing exec and TUI sessions, isolate remote skill refresh and subagent sweeps, surface skill-scan and approval diagnostics, sanitize ANSI and stray parameter markup without losing visible text, and stop Android audio capture cleanly on device loss. (#100440) Thanks @cxbAsDev, @wendy-chsy, @tzy-17, @nankingjing, @NianJiuZst, @LavyaTandel, and @maweibin.</li>
<li><strong>Docker sandbox command output:</strong> fail and terminate Docker sandbox operations when stdout/stderr capture breaks instead of returning success with incomplete output. (#100523) Thanks @cxbAsDev and @vincentkoc.</li>
<li><strong>Android push-to-talk lifecycle:</strong> serialize gateway PTT preparation with app foreground and Manual Mic ownership so delayed work cannot restart, replace, or tear down a newer capture. (#100552) Thanks @xialonglee.</li>
<li><strong>Lean local-model tools:</strong> trim media generation, TTS, and PDF tools from lean agent surfaces while preserving explicit config and runtime opt-ins. (#88881) Thanks @vincentkoc.</li>
<li><strong>iOS development app identity:</strong> keep the development app labeled OpenClaw while using its distinct debug icon to differentiate it from release builds.</li>
<li><strong>Android chat recovery:</strong> preserve optimistic user messages and locally owned runs while reconnect and sequence-gap history snapshots catch up, preventing sent messages from disappearing or stale runs from taking ownership. (#100197)</li>
<li><strong>iOS QR gateway handoff:</strong> stop VisionKit before delivering scanned setup codes, and keep deferred auth, approval, Watch, and foreground-node work bound to its originating gateway across reconnects. (#99572) Thanks @PollyBot13.</li>
<li><strong>Agent terminal failures:</strong> surface a safe interactive reply when an agent run ends without visible output, while preserving completed message-tool delivery and heartbeat-specific guidance. (#99304) Thanks @moeedahmed and @maweibin.</li>
<li><strong>MCP loopback tool results:</strong> preserve schema-valid text, image, and embedded-resource content through HTTP tool calls while rendering malformed or protocol-incompatible blocks as safe text. (#100336) Thanks @tzy-17, @OpenClawKobian99, @vincentkoc, @shakkernerd, and @maweibin.</li>
<li><strong>Control UI tool-result images:</strong> render direct image content blocks from Gateway history and make the delayed-send scroll E2E setup deterministic. (#100295) Thanks @lzyyzznl, @Pandah97, @rquinones84, and @maweibin.</li>
<li><strong>Control UI live tool ordering:</strong> keep assistant stream text before its matching tool card when browser and Gateway timestamps disagree. (#93184) Thanks @Pick-cat and @lileilei-camera.</li>
<li><strong>IRC Unicode messages:</strong> split outbound PRIVMSG payloads on UTF-16 code-point boundaries so emoji cannot be cut into lone surrogates. (#96572) Thanks @WeeLi-009, @vincentkoc, @mushuiyu886, and @cursoragent.</li>
<li><strong>OpenAI realtime voice greetings:</strong> prevent server VAD from creating a second outbound greeting while an explicit greeting response owns the turn, without disabling caller interruption. (#86285) Thanks @giodl73-repo and @jnikolaidis.</li>
<li><strong>Realtime voice tools:</strong> filter malformed tool names at each OpenAI, Azure, and Google realtime payload boundary while preserving provider-specific valid names. (#89175) Thanks @vincentkoc.</li>
<li><strong>Discord voice status:</strong> treat Discord error 10065 as a normal disconnected state while preserving unrelated REST failures. (#90969) Thanks @asock.</li>
<li><strong>Discord voice accounts:</strong> isolate <code>@discordjs/voice</code> connections by Discord account and recover auto-join when gateway readiness predates listener registration. (#87530) Thanks @geekhuashan.</li>
<li><strong>iOS Voice Wake cleanup:</strong> avoid initializing the microphone audio pipeline while disabling inactive Voice Wake, preventing simulator launch aborts and unnecessary audio setup.</li>
<li><strong>Reliability edge cases:</strong> reject sub-millisecond cron durations, preserve generated proposal newlines, normalize blank integer inputs and fail embedded LSP startup promptly, surface persistence and memory-close failures, keep UTF-16 and plugin package verification correct, propagate Android cancellation, and defer Codex relay registry writes until listening. (#100399) Thanks @cxbAsDev, @snotty, @lin-hongkuan, @849261680, @qingminglong, @anyech, @masatohoshino, @Simon-XYDT, @xialonglee, @nankingjing, @609NFT, and @vincentkoc.</li>
<li><strong>Voice Call completed status:</strong> resolve finalized calls from the full retained event store across Gateway, tool, and CLI status paths while preserving active-call lookup performance. (#99797) Thanks @Darren2030, @NiTeCoMM-code, and @maweibin.</li>
<li><strong>Agent stop recovery:</strong> prevent late-aborting prompts from reacquiring orphaned session locks after teardown, so <code>/stop</code> leaves the conversation ready for the next turn.</li>
<li><strong>Message delivery status:</strong> report failed and partially failed best-effort channel delivery instead of returning a success-shaped message-tool result. (#99928) Thanks @masatohoshino.</li>
<li><strong>WhatsApp credential recovery:</strong> restore malformed primary auth state from a valid backup during startup. (#99070) Thanks @LeonidasLux.</li>
<li><strong>WhatsApp quoted replies:</strong> preserve bot-authored outbound quote metadata so replies to those messages keep their reply bubble in WhatsApp Desktop. (#94879) Thanks @Bartok9, @seikosantana, and @vincentkoc.</li>
<li><strong>WhatsApp reconnect catch-up:</strong> admit recently missed Baileys <code>append</code> messages during a bounded reconnect window while preserving startup stale-history guards. (#80642) Thanks @VishalJ99.</li>
<li><strong>WhatsApp restart recovery:</strong> stop automatic restart loops after logged-out or connection-replaced disconnects until the account reconnects. (#78511) Thanks @openperf and @rutherlesdev.</li>
<li><strong>Local Gateway CLI auth:</strong> keep loopback CLI token/password calls off durable device scopes so read probes cannot block later write/admin commands behind a stale pairing baseline. (#95997) Thanks @vincentkoc.</li>
<li><strong>Plugin module identity:</strong> keep OpenClaw package chunks on Node's native module graph when jiti transforms plugin entries, preventing duplicate evaluation and class identity drift. (#88384) Thanks @vincentkoc and @ScientificProgrammer.</li>
<li><strong>Shell completion repair:</strong> generate core-only caches during doctor and update repair while preserving full plugin command completion for onboarding and explicit user rebuilds. (#76235) Thanks @joshavant.</li>
<li><strong>MCP schema diagnostics:</strong> attribute draft-2020-12 compiler failures to the external MCP schema so malformed patterns produce actionable setup errors. Thanks @vincentkoc.</li>
<li><strong>Windows Scheduled Task recovery:</strong> keep clean early exits inside the existing bounded launch poll, falling back only when neither the task process nor Gateway listener becomes observable.</li>
<li><strong>iMessage group warnings:</strong> suppress the false drop-all startup warning when an effective group sender allowlist can admit groups, and point true empty-allowlist configurations at the correct remedy. (#100046)</li>
<li><strong>Control UI mobile login:</strong> keep Gateway recovery guidance visible after connection failures, make the disconnected gate scroll safely on constrained screens, and improve mobile keyboard and tap-target behavior. (#100208)</li>
<li><strong>TUI streaming:</strong> render delta-only assistant events in live Gateway and embedded TUI sessions instead of waiting for the final response. (#83000) Thanks @flashosophy.</li>
<li><strong>Model aliases:</strong> resolve provider-qualified aliases during session and chat-command model switches without collisions when providers share a display alias. (#100209) Thanks @sahilsatralkar, @david-r-jones, @shakkernerd, and @vincentkoc.</li>
<li><strong>TUI new-session hooks:</strong> create <code>/new</code> sessions through the shared Gateway lifecycle so command and session hooks receive the completed parent transcript in both Gateway and embedded modes, while preventing rollover during an active turn. (#100241, #49918) Thanks @BingqingLyu, @caopulan, @LonExplorer-coder, and @vincentkoc.</li>
<li><strong>TUI abort diagnostics:</strong> show sanitized tool argument-validation summaries for aborted runs in both Gateway and local TUI modes without exposing raw model arguments. (#91002) Thanks @wsyjh8 and @taerlandsen.</li>
<li><strong>iOS Watch replies:</strong> persist queued quick replies in the gateway-scoped chat outbox and submit them through idempotent chat delivery, preventing losses, duplicates, and cross-gateway sends after reconnects. (#100372) Thanks @NianJiuZst.</li>
<li><strong>iOS Gateway auth retry:</strong> restrict stored device-token retry to parsed loopback hosts and reject wildcard bind addresses, preventing remote lookalike hostnames from receiving trusted retry credentials. (#99859) Thanks @ly85206559 and @vincentkoc.</li>
<li><strong>Bedrock Mantle discovery:</strong> bound model-catalog fetch time and response size, and release rejected response bodies so stalled, oversized, or failed provider responses fall back safely. (#99961) Thanks @zhangguiping-xydt and @shakkernerd.</li>
<li><strong>Discord thread-title prompts:</strong> truncate generated-title message and channel context on UTF-16 boundaries so emoji cannot leave malformed model prompt text. (#101551) Thanks @Alix-007, @vincentkoc, @mushuiyu886, and @cursoragent.</li>
</ul>
<ul>
<li><strong>Mobile pairing routes:</strong> advertise verified persistent Tailscale Serve fallbacks alongside <code>gateway.bind=lan</code> setup URLs, show every route in the Control UI and CLI, and let iOS save the first reachable endpoint. (#100280) Thanks @shakkernerd.</li>
<li><strong>Control UI terminal tabs:</strong> vertically center the new-session button in the terminal tab strip.</li>
<li><strong>Control UI composer scrollbar:</strong> show the message-field scrollbar only when the draft actually overflows its autosized height.</li>
<li><strong>Control UI terminal cursor:</strong> hide the browser-native contenteditable caret so the integrated terminal shows only its canvas-rendered cursor.</li>
<li><strong>macOS SSH tunnels:</strong> resolve user-installed SSH <code>ProxyCommand</code> helpers through the app's managed PATH while preserving inherited connection environment, so remote aliases work after Finder and sanitized-script launches.</li>
<li><strong>Control UI OpenAI speed picker:</strong> show only Standard and Fast choices for OpenAI models.</li>
<li><strong>Control UI terminal rendering:</strong> adopt the shared <code>@openclaw/libterminal</code> browser lifecycle and add Nerd Font fallbacks so icon-enabled shell listings render their glyphs when a compatible local font is installed.</li>
<li><strong>Slack transcript history:</strong> let Codex app-server own its persisted assistant replies so Slack does not append redundant delivery-mirror rows, while the Control UI keeps legacy duplicate mirrors hidden. Thanks @bek91.</li>
<li><strong>Control UI chat history:</strong> hide redundant channel-final delivery mirrors when the preceding app-server assistant reply already shows the same text.</li>
<li><strong>Control UI chat spacing:</strong> keep the first message comfortably clear of the topbar with a responsive minimum transcript inset.</li>
<li><strong>ClawRouter auth profiles:</strong> resolve credential-scoped catalog models during agent runs when the proxy key is stored in an auth profile, and document plugin and model allowlists.</li>
<li><strong>Telegram durability:</strong> retry restart-dropped media, survive transient polling errors, dead-letter poison updates, preserve forwarded rich text, route plugin callbacks correctly, keep progress updates in one stable multi-line window, map self-hosted Bot API container paths through trusted host roots, and fall back safely when Telegram rejects rich final replies. (#98102, #98735, #98775, #98776, #97174, #98907, #91984, #98786) Thanks @luoyanglang, @DaveArcher18, @obviyus, @goldmar, @Marvinthebored, @Dizesales, @shakkernerd, @AiLucasdz, and @RomneyDa.</li>
<li><strong>Cross-channel inbound media:</strong> preserve captions and expose unavailable-attachment notices when WhatsApp, LINE, Signal, iMessage, Microsoft Teams, Feishu, Mattermost, or Zalo cannot materialize inbound media, instead of dispatching phantom placeholders or dropping media-only turns. (#100092)</li>
<li><strong>Agent and context reliability:</strong> preserve runtime overrides, steered subagent tasks, fallback tool-call hints, and legacy reseed attachments; soft-resume CLI sessions across prompt-only drift; improve harness-aware context estimation; time out silent local streams; recover mid-stream failures; and cap Gateway run-cache growth. (#92237, #77539, #99851, #99839, #99822, #97928, #98525, #95430, #77973) Thanks @sercada, @amittell, @obviyus, @liuhao1024, @yetval, @osolmaz, @lzyyzznl, @vincentkoc, @alexelgier, and @fede-kamel.</li>
<li><strong>Provider and network safety:</strong> bound oversized or malformed responses across Moonshot, MiniMax, Anthropic OAuth, Discord, Matrix, SMS, browser, update, embeddings, Tlön, and Inworld paths. (#96502, #96322, #96644, #97693, #97662, #97999, #98455, #98508, #98554, #98496, #98660) Thanks @hugenshen, @cursoragent, @lsr911, @solodmd, @Alix-007, @wings1029, @lzyyzznl, @sunlit-deng, @vincentkoc, and @Pandah97.</li>
<li><strong>Channel delivery and routing:</strong> keep Slack replies in active thread sessions, preserve account-bound delivery routes, apply response prefixes, and suppress internal traces and unwanted fallback replies. (#97168, #98240, #93639, #97989, #80928) Thanks @LiuwqGit, @gorkem2020, @yetval, @ZengWen-DT, @alexuser, @UnClouded77, and @vincentkoc.</li>
<li><strong>Cron correctness:</strong> preserve provider and model selections on timeouts, retain startup catch-up deferrals across maintenance reads, keep action-required output, clear blank thinking overrides, and preserve provider-owned daily-reset sessions. (#95943, #94022, #96393, #96293, #98356) Thanks @ZengWen-DT, @cursoragent, @luke-renjoy, @RichChen01, @vincentkoc, @yetval, @snowzlmbot, @nz365guy, @takamasa-aiso, and @shakkernerd.</li>
<li><strong>Memory and session recovery:</strong> detect unindexed transcripts, preserve notes through transient reads, avoid cross-directory resumes, disambiguate reserved wiki index pages, and skip empty QMD sync work. (#97857, #98360, #97785, #94326, #90030) Thanks @zw-xysk, @CHE10X, @qingminglong, @yetval, @vincentkoc, @sahibzada-allahyar, and @ruben2000de.</li>
<li><strong>Windows and execution:</strong> bind allowlisted execution to the validated Windows path, propagate <code>PATHEXT</code>, normalize inbound paths case-insensitively, and prevent cleanup crashes on Windows. (#98260, #98093, #97630, #97901) Thanks @eleqtrizit, @wendy-chsy, @VectorPeak, @paulcam206, and @shakkernerd.</li>
<li><strong>Mobile and UI stability:</strong> preserve iOS chat line breaks and final replies, improve Android pairing and TLS recovery, hide expired pairing cards, keep workspace file rails scrollable, restore copy-path over plain HTTP, and stop rubber-band scrolling in the Mac app Control UI. (#98304, #98117, #98366, #98439, #98483, #98049, #98646, #98611, #98764, #99830) Thanks @joshavant, @Jabato01, @ooiuuii, @wuqxuan, @645648406-max, @zw-xysk, @ZengWen-DT, and @adinballew.</li>
<li><strong>Codex and approval flows:</strong> report ChatGPT authentication correctly, rename destructive approval mode to <code>ask</code>, classify <code>get_goal</code> read statuses accurately, and derive terminal-idle timeouts from the explicit run deadline. (#91240, #98501, #98659, #85296) Thanks @849261680, @ukstem, @kevinslin, @yetval, @alkor200, @vincentkoc, and @alkor2000.</li>
<li><strong>Configuration and plugin health:</strong> restrict config traversal to owned properties, preserve config-health recovery state, surface unloadable channel plugins, preserve defaulted provider base URLs during patches, validate bundled plugin updates by manifest contract, resolve public artifacts from installed plugin roots, and retain legacy ClawHub families where required. (#99846, #99728, #96397, #98396, #98010, #98819, #98249) Thanks @vincentkoc, @zenglingbiao, @joshavant, @jalehman, @ccbridle, @849261680, @momothemage, @weltmaister, @LiLan0125, @herove, @amknight, @KelTech-Services, and @Patrick-Erichsen.</li>
<li><strong>Runtime process safety:</strong> prevent unhandled child-stream errors in SSH tunnels, supervisors, and MCP stdio transports; keep auto-replies from waiting on transcript mirroring; and avoid splitting Unicode characters in approval previews and LINE outbound fields. (#99800, #99802, #99803, #99549, #99566, #98994) Thanks @cxbAsDev, @vincentkoc, @Shagrat2, @mikasa0818, and @LEXES7.</li>
<li><strong>Node runtime compatibility:</strong> installers, the CLI launcher, doctor, and the macOS app now reject incompatible Node 23 runtimes and guide users toward supported Node 22 or 24 releases. (#99832) Thanks @vincentkoc and @fuller-stack-dev.</li>
<li><strong>SQLite WAL safety:</strong> require Node releases with a patched SQLite runtime, verify the loaded library before opening state databases, and make installers upgrade and validate unsafe runtimes across supported platforms. (#106065) Thanks @vincentkoc.</li>
<li><strong>Installer temporary-file cleanup:</strong> remove Node staging directories and pnpm workspace rewrite files when downloads or rewrites fail. (#103725) Thanks @SebTardif.</li>
<li><strong>QQBot media delivery:</strong> scope sandbox-generated media sends to the active session's workspace so <code>/workspace/...</code> and relative generated-file paths resolve safely across QQBot media tags, structured payloads, and streaming delivery. (#92872) Thanks @zhangguiping-xydt and @sliverp.</li>
</ul>
<h3>Complete contribution record</h3>
This audited record covers the complete 66e676d29b92d040716376a75aca32bad655cfac..e0ce12504d428779bb5023d4f1442f4b92261f49 history: 1536 merged PRs. The generation manifest also supplies direct commits as editorial input; the grouped notes above prioritize user impact.
Shipped baseline exclusions: v2026.6.11 (10 PRs: #87298, #89949, #90811, #92020, #92657, #93466, #93650, #93767, #93810, #97118).
<h4>Pull requests</h4>
<ul>
<li><strong>PR #96502</strong> fix(moonshot): bound video description JSON response reads. Thanks @hugenshen and @cursoragent.</li>
<li><strong>PR #98249</strong> Preserve legacy ClawHub family for selected plugins. Thanks @Patrick-Erichsen.</li>
<li><strong>PR #93820</strong> fix(imessage): recognize MiniMax mm: reasoning tags in reflection guard (completes #93767). Thanks @Alix-007.</li>
<li><strong>PR #94096</strong> fix(usage): reject inverted startDate-endDate range in usage.cost and sessions.usage. Thanks @Alix-007.</li>
<li><strong>PR #97125</strong> Doctor: expose auth profile findings. Thanks @giodl73-repo.</li>
<li><strong>PR #98256</strong> fix(mcp): require owner for Claude permission replies. Thanks @eleqtrizit.</li>
<li><strong>PR #98142</strong> fix(cli): stop <code>pairing list</code> crashing with empty channel enum. Thanks @RomneyDa.</li>
<li><strong>PR #98260</strong> fix(exec): bind Windows allowlist execution path. Thanks @eleqtrizit.</li>
<li><strong>PR #97168</strong> fix(slack): prefer current thread session for inherited outbound replies. Related #96535. Thanks @LiuwqGit and @gorkem2020.</li>
<li><strong>PR #97769</strong> fix(plugins): apply output text transforms to toolcall_delta and toolcall_end events. Related #97761. Thanks @ZOOWH and @get-viti.</li>
<li><strong>PR #96544</strong> fix(doctor): merge colliding model-ref map keys instead of dropping. Thanks @yetval and @vincentkoc.</li>
<li><strong>PR #97177</strong> fix(memory-wiki): gracefully handle unparsable YAML frontmatter in vault scans (#96125). Thanks @SunnyShu0925 and @cow11023.</li>
<li><strong>PR #97167</strong> fix #96840: [Bug]: Targetless message.send fails with 'Action send requires a target' in WebChat despite docs stating source-reply sink should handle it. Thanks @zhangguiping-xydt and @MantisCartography.</li>
<li><strong>PR #98302</strong> fix(ios): advance onboarding step after QR scan. Related #98297. Thanks @joelnishanth and @cursoragent.</li>
<li><strong>PR #96644</strong> fix(anthropic-oauth): bound OAuth token endpoint response reads. Thanks @solodmd.</li>
<li><strong>PR #96397</strong> fix: warn when configured channel plugins cannot load. Thanks @849261680.</li>
<li><strong>PR #96359</strong> test: migrate src/commands tests to shared temp dir helpers. Thanks @xialonglee.</li>
<li><strong>PR #96293</strong> fix(cron): clear agentTurn thinking override by blanking the field. Related #96287. Thanks @ZengWen-DT and @takamasa-aiso.</li>
<li><strong>PR #96058</strong> test: prefer shared temp dir helpers in auto-reply and install-fallback tests. Thanks @xialonglee.</li>
<li><strong>PR #97785</strong> fix(sessions): avoid cross-cwd recent resumes. Related #96542. Thanks @qingminglong and @yetval.</li>
<li><strong>PR #97698</strong> fix(pdf): reject empty parsed page ranges before native analysis. Thanks @zhangguiping-xydt.</li>
<li><strong>PR #97693</strong> fix(discord): bound requestDiscord happy-path response reads to prevent OOM. Thanks @Alix-007.</li>
<li><strong>PR #97683</strong> fix(irc): guard surrogate-range codepoints in \u literal-escape decoder. Thanks @WeeLi-009.</li>
<li><strong>PR #96938</strong> fix(utils): keep reply directive ids unicode-safe. Thanks @ly-wang19.</li>
<li><strong>PR #97857</strong> fix(memory): detect unindexed session transcripts in status mode (fixes #97814). Thanks @zw-xysk and @CHE10X.</li>
<li><strong>PR #98094</strong> fix(android): clarify gateway auth recovery states. Thanks @qingminglong.</li>
<li><strong>PR #98205</strong> test(gateway): add unit tests for node wake state tracking and testing seam. Thanks @zenglingbiao.</li>
<li><strong>PR #98115</strong> fix: surface node approval guidance from devices CLI. Thanks @welfo-beo.</li>
<li><strong>PR #97898</strong> docs: clarify source checkout Node floor. Related #97792. Thanks @lin-hongkuan and @aniruddhaadak80.</li>
<li><strong>PR #94526</strong> test(telegram): add regression test for forum topic message_thread_id with streamed reasoning. Related #89352. Thanks @xialonglee and @pmika.</li>
<li><strong>PR #98145</strong> fix(device-pairing): don't churn requestId on subset re-requests. Thanks @RomneyDa.</li>
<li><strong>PR #98267</strong> fix(system-prompt): move exec-approval + Authorized Senders below cache boundary. Related #98261. Thanks @headbouyJB.</li>
<li><strong>PR #98304</strong> fix: preserve iOS chat line breaks. Related #98028. Thanks @joshavant and @Jabato01.</li>
<li><strong>PR #98187</strong> fix(openrouter): send explicit auth headers. Related #97934. Thanks @sunlit-deng and @laurencebrown.</li>
<li><strong>PR #95708</strong> fix: show WebChat preamble progress during tool activity. Thanks @ragesaq.</li>
<li><strong>PR #98210</strong> fix(gateway): iOS Talk treats SecretRef-backed API keys as missing. Related #98209. Thanks @ooiuuii.</li>
<li><strong>PR #98009</strong> test(infra): add unit tests for SQLite number normalization. Thanks @dwc1997.</li>
<li><strong>PR #98087</strong> test(config): add unit tests for resolveExecCommandHighlighting. Thanks @solodmd.</li>
<li><strong>PR #98219</strong> test(utils): add unit tests for chunkItems. Thanks @zenglingbiao.</li>
<li><strong>PR #98093</strong> fix(core): propagate caller env PATHEXT through isExecutableFile on Windows. Thanks @wendy-chsy.</li>
<li><strong>PR #97973</strong> fix(matrix): guard JSON.parse against malformed homeserver response bodies. Thanks @lsr911.</li>
<li><strong>PR #97999</strong> fix(sms): guard Twilio JSON.parse against malformed API response bodies. Thanks @lsr911.</li>
<li><strong>PR #98043</strong> Add Swedish mobile app localization. Thanks @yeager.</li>
<li><strong>PR #98144</strong> fix(tui): correct disconnect copy for device scope upgrades. Thanks @RomneyDa.</li>
<li><strong>PR #98240</strong> fix(agents): keep merged delivery routes account-bound. Thanks @yetval.</li>
<li><strong>PR #98226</strong> Redact bare Fireworks API keys. Related #98225. Thanks @ooiuuii.</li>
<li><strong>PR #98319</strong> docs: publish release notes for v2026.6.11. Thanks @hannesrudolph.</li>
<li><strong>PR #98257</strong> fix: show in-progress status for channel runs. Thanks @scotthuang.</li>
<li><strong>PR #97931</strong> fix(gateway): keep provider-owned CLI sessions across the daily default reset. Thanks @yetval.</li>
<li><strong>PR #98325</strong> docs: refresh docs map for v2026.6.11. Thanks @hannesrudolph.</li>
<li><strong>PR #97929</strong> fix(auto-reply): stop level directives from eating the next message word. Thanks @yetval.</li>
<li><strong>PR #97928</strong> fix(agents): estimate harness role sizes in context guard char estimator (fixes #97927). Thanks @liuhao1024 and @yetval.</li>
<li><strong>PR #97861</strong> fix(compaction): count bashExecution and summary turns in pre-prompt overflow precheck. Thanks @yetval.</li>
<li><strong>PR #97137</strong> doctor: add memory search lint findings. Thanks @giodl73-repo.</li>
<li><strong>PR #97358</strong> Doctor: expose workspace status findings. Thanks @giodl73-repo.</li>
<li><strong>PR #95622</strong> test(qa-lab): harden whatsapp qa scenarios. Thanks @mcaxtr.</li>
<li><strong>PR #98346</strong> fix: prevent skill-creator from bypassing workshop proposals. Related #96054. Thanks @momothemage and @xianshishan.</li>
<li><strong>PR #98169</strong> fix(heartbeat): scope commitment fan-out prompts. Thanks @bdjben.</li>
<li><strong>PR #97366</strong> Doctor: expose device pairing findings. Thanks @giodl73-repo.</li>
<li><strong>PR #98366</strong> fix: Android TLS fingerprint verification times out on slow handshakes. Related #98365. Thanks @joshavant.</li>
<li><strong>PR #98353</strong> fix(ios): open app on Chat by default. Thanks @BsnizND.</li>
<li><strong>PR #98352</strong> fix(security): warn on agent skill MCP boundary drift. Thanks @momothemage.</li>
<li><strong>PR #98347</strong> fix: retry image describe fallback models. Thanks @momothemage.</li>
<li><strong>PR #98117</strong> fix(ios): avoid transient duplicate final replies. Related #98116. Thanks @ooiuuii and @joshavant.</li>
<li><strong>PR #98293</strong> fix(gateway): emit stale exec approval followup diagnostics. Thanks @BsnizND.</li>
<li><strong>PR #98376</strong> fix(ios): use Gateway speech providers in Talk. Related #98153. Thanks @Tony-ooo.</li>
<li><strong>PR #66685</strong> Suppress expired exec approval followup warnings. Thanks @pfrederiksen.</li>
<li><strong>PR #98385</strong> fix: show actionable mobile protocol mismatch recovery. Related #98384. Thanks @joshavant.</li>
<li><strong>PR #98146</strong> fix(cli): explain how to recover from device approve deadlock. Thanks @RomneyDa.</li>
<li><strong>PR #98423</strong> improve(ios): clarify Control and Talk visual hierarchy. Related #98397.</li>
<li><strong>PR #98217</strong> fix(doctor): recover legacy cron archive across devices. Thanks @masatohoshino.</li>
<li><strong>PR #98333</strong> feat(openai): add GPT-5.6 series support. Related #98296. Thanks @steipete-oai.</li>
<li><strong>PR #96393</strong> fix(cron): preserve action-required command output. Related #96346. Thanks @snowzlmbot and @nz365guy.</li>
<li><strong>PR #98429</strong> fix(ios): classify TLS fingerprint timeouts. Thanks @joshavant.</li>
<li><strong>PR #98439</strong> fix: Android setup codes accept local mDNS gateway hosts. Thanks @joshavant.</li>
<li><strong>PR #98443</strong> fix(ios): improve light and dark appearance contrast. Related #98440.</li>
<li><strong>PR #97742</strong> fix(llm): preserve structured tool result text across providers. Thanks @snowzlmbot.</li>
<li><strong>PR #97968</strong> fix(status): surface unregistered memory embedding providers. Thanks @masatohoshino.</li>
<li><strong>PR #92237</strong> fix(agents): preserve runtime settings overrides [AI-assisted]. Thanks @sercada.</li>
<li><strong>PR #95888</strong> fix(active-memory): caveat mutable ops facts; mark truncated recall as incomplete. Thanks @spencer2211.</li>
<li><strong>PR #98291</strong> fix(gateway): surface systemd start-limit exhaustion. Thanks @masatohoshino.</li>
<li><strong>PR #90517</strong> fix(gateway): hint missing external plugin for web login. Related #83277. Thanks @TUARAN and @carol-iung.</li>
<li><strong>PR #98369</strong> test(infra): add unit tests for SQLite user_version pragma helper. Thanks @dwc1997.</li>
<li><strong>PR #98340</strong> fix: extension api.exec leaves child processes after timeout. Related #98335. Thanks @ooiuuii.</li>
<li><strong>PR #92063</strong> fix(ui): collapse duplicate assistant groups during segmented streaming. Related #63956. Thanks @harjothkhara and @contentfree.</li>
<li><strong>PR #98354</strong> fix(infra): guard delivery queue inflate against corrupted entry_json. Thanks @Pick-cat.</li>
<li><strong>PR #90566</strong> fix(agents): warn on cron announce skip. Related #68561. Thanks @sahibzada-allahyar and @Mibslee.</li>
<li><strong>PR #98371</strong> fix(ports): validate lsof PID parsing before assignment. Thanks @lzyyzznl.</li>
<li><strong>PR #98356</strong> fix(cron): keep provider-owned CLI sessions across the daily default reset. Thanks @yetval.</li>
<li><strong>PR #98395</strong> test(shared): add unit tests for account enabled guard. Thanks @dwc1997.</li>
<li><strong>PR #98411</strong> fix(agents): recover thinking errors from provider body. Related #98308. Thanks @sunlit-deng and @clearhorizoninvestments.</li>
<li><strong>PR #98494</strong> docs(skills): support variable landable sweep batches. Thanks @vincentkoc.</li>
<li><strong>PR #91240</strong> fix: report Codex ChatGPT status auth. Related #91099. Thanks @849261680 and @ukstem.</li>
<li><strong>PR #98370</strong> test(agents): add unit tests for thinking block detection. Thanks @dwc1997.</li>
<li><strong>PR #96711</strong> test: prefer shared temp dir helpers in config, gateway, cron, crestodian, and state tests. Thanks @xialonglee.</li>
<li><strong>PR #98483</strong> fix: Android QR scan starts gateway pairing. Thanks @joshavant.</li>
<li><strong>PR #95230</strong> fix docs-list-mdx-pages. Thanks @hugenshen.</li>
<li><strong>PR #96322</strong> fix(minimax): bound JSON response reads to prevent OOM. Thanks @lsr911.</li>
<li><strong>PR #95348</strong> fix config-chmod-warning. Thanks @hugenshen and @cursoragent.</li>
<li><strong>PR #95229</strong> fix(copilot): guard against undefined runtime.state during cli-metadata registration. Related #94516. Thanks @sunlit-deng and @cuihaijun.</li>
<li><strong>PR #94636</strong> fix(memory): skip raw snippets during promotion. Thanks @tayoun.</li>
<li><strong>PR #94013</strong> [AI] fix(feishu): guard partial channelRuntime in monitor startup. Thanks @xydt-tanshanshan.</li>
<li><strong>PR #98049</strong> fix: hide expired pairing QR cards in Control UI. Related #98039. Thanks @ooiuuii.</li>
<li><strong>PR #96094</strong> fix(memory): prove live manager recovery after CLI reindex. Related #91167. Thanks @849261680 and @kiagentkronos-cell.</li>
<li><strong>PR #98482</strong> fix: advertise route-aware LAN Control UI links. Thanks @joshavant.</li>
<li><strong>PR #71537</strong> Recover archived (.reset) session transcripts in memory hook + session-logs skill. Thanks @injinj.</li>
<li><strong>PR #96375</strong> docs(config-agents): correct built-in alias table for opus and gpt. Thanks @niks999.</li>
<li><strong>PR #98453</strong> docs(gateway): fix Telegram streaming default in config-channels.md. Thanks @solodmd.</li>
<li><strong>PR #98533</strong> fix: repair hosted CI baseline assertions.</li>
<li><strong>PR #98421</strong> feat(imessage): native poll support — create, read, vote. Thanks @omarshahine and @lobster.</li>
<li><strong>PR #98318</strong> docs(matrix): document missing streaming.progress mode, progress sub-fields, and mentionPatterns config. Thanks @wm0018 and @vincentkoc.</li>
<li><strong>PR #97753</strong> docs(onboard): document 11 missing non-interactive CLI flags. Thanks @wm0018 and @vincentkoc.</li>
<li><strong>PR #97851</strong> fix(mattermost): bound null-body error response reads. Thanks @Pick-cat.</li>
<li><strong>PR #98360</strong> fix(memory-wiki): preserve notes after transient page reads. Related #98345. Thanks @qingminglong and @vincentkoc and @yetval.</li>
<li><strong>PR #98551</strong> test: fix stale core test type failures. Thanks @RomneyDa.</li>
<li><strong>PR #98455</strong> fix(browser): bound error body read in fetchHttpJson to prevent OOM. Thanks @wings1029.</li>
<li><strong>PR #95906</strong> fix(code-mode): surface QuickJS error name and message to the model. Thanks @ZengWen-DT and @vincentkoc.</li>
<li><strong>PR #97901</strong> fix(agents): stop copilot autoreview cleanup crash on Windows. Thanks @paulcam206.</li>
<li><strong>PR #97923</strong> fix(slack): truncate served arg-menu option labels on a surrogate boundary. Thanks @LEXES7.</li>
<li><strong>PR #98010</strong> fix(update): validate bundle plugin payloads by manifest contract. Related #97985. Thanks @LiLan0125 and @herove.</li>
<li><strong>PR #85296</strong> fix(codex): derive terminal-idle watchdog from explicit run timeout. Thanks @alkor2000 and @vincentkoc.</li>
<li><strong>PR #97110</strong> feat(i18n): add native app locale inventory. Thanks @vincentkoc.</li>
<li><strong>PR #98396</strong> fix: allow config.patch with defaulted provider baseUrl. Related #98270. Thanks @momothemage and @weltmaister.</li>
<li><strong>PR #98503</strong> fix(usage-bar): use Object.hasOwn instead of in operator to avoid prototype chain pollution. Related #98466. Thanks @chenyangjun-xy and @zhangLei99586.</li>
<li><strong>PR #97111</strong> feat(android): localize core gateway surfaces. Thanks @vincentkoc.</li>
<li><strong>PR #97630</strong> fix(media): normalize Windows inbound paths case-insensitively. Thanks @VectorPeak.</li>
<li><strong>PR #82638</strong> fix(agents): skip implicit provider discovery when models.mode is 'replace' [AI-assisted]. Related #66957. Thanks @eldar702 and @wangzhengshu.</li>
<li><strong>PR #87917</strong> fix sessions json lineage metadata. Related #80286. Thanks @zhangguiping-xydt and @islandpreneur007.</li>
<li><strong>PR #93639</strong> fix(message-tool): apply messages.responsePrefix to outbound sends. Thanks @ZengWen-DT.</li>
<li><strong>PR #94440</strong> fix: #94432 classify Cloudflare challenge 403 as upstream_html instead of auth_html. Thanks @lzyyzznl and @pbm9z95m6z-hue.</li>
<li><strong>PR #98119</strong> fix: reduce Docker build memory pressure. Related #98118. Thanks @zyzo.</li>
<li><strong>PR #97679</strong> feat(node): add --context-path flag to node run/install for reverse-p…. Related #97678. Thanks @wm0018.</li>
<li><strong>PR #98339</strong> fix(irc): classify host-less nick!user allowlist entries as mutable. Thanks @yetval.</li>
<li><strong>PR #97662</strong> fix(matrix): bound raw transport response reads to prevent OOM. Thanks @Alix-007.</li>
<li><strong>PR #98137</strong> fix: hoist timer declaration to avoid TDZ ReferenceError in abortable delay. Thanks @zhangLei99586.</li>
<li><strong>PR #98134</strong> fix: clear timeout timer in Tailscale binary probe Promise.race. Thanks @zhangLei99586.</li>
<li><strong>PR #97989</strong> fix(sms): stop internal tool-trace banners from reaching SMS replies. Thanks @ZengWen-DT.</li>
<li><strong>PR #97972</strong> fix(browser): CDP auth fails with percent-encoded credentials. Thanks @VectorPeak.</li>
<li><strong>PR #98063</strong> fix(reply): suppress tool-error progress delivery when messages.suppressToolErrors is set. Thanks @moeedahmed.</li>
<li><strong>PR #94964</strong> fix(reload): cancel deferred channel reload on in-process restart. Related #79487. Thanks @lzyyzznl and @tseller.</li>
<li><strong>PR #98598</strong> fix: restore main lint after timer repairs. Related #98462, #98464. Thanks @zhangLei99586.</li>
<li><strong>PR #98587</strong> fix(slack): guard relay WebSocket frame JSON.parse against malformed input. Thanks @lsr911 and @vincentkoc.</li>
<li><strong>PR #90030</strong> fix(memory-core): skip qmd zero-hit search sync. Related #90023. Thanks @sahibzada-allahyar and @ruben2000de.</li>
<li><strong>PR #98493</strong> fix(transcripts): close readline interface and destroy read stream on error exit. Related #98467. Thanks @wangmiao0668000666 and @zhangLei99586.</li>
<li><strong>PR #98497</strong> fix(cli): show exit code when plugin npm install returns empty output. Thanks @Sanjays2402 and @vincentkoc.</li>
<li><strong>PR #97112</strong> feat(apple): localize core native app surfaces. Thanks @vincentkoc.</li>
<li><strong>PR #98610</strong> fix: restore tooling CI after transcript test addition.</li>
<li><strong>PR #77539</strong> fix(subagent): preserve steered task text on restart redispatch. Thanks @amittell.</li>
<li><strong>PR #97113</strong> feat(i18n): refresh all native locale artifacts. Thanks @vincentkoc.</li>
<li><strong>PR #98620</strong> feat(doctor): warn about in-flight cron jobs. Thanks @masatohoshino.</li>
<li><strong>PR #98605</strong> test(shared): add unit tests for human-readable list formatting. Thanks @dwc1997.</li>
<li><strong>PR #97348</strong> feat(autoreview): support cursor-agent engine. Thanks @hxy91819.</li>
<li><strong>PR #95943</strong> fix(cron): preserve provider/model on isolated-run timeout row. Related #95873. Thanks @ZengWen-DT and @cursoragent and @luke-renjoy.</li>
<li><strong>PR #94149</strong> fix(status): bound systemd service probes so status cannot hang on a wedged systemctl (#84698). Thanks @ZengWen-DT and @cursoragent and @zus-assistant.</li>
<li><strong>PR #88159</strong> fix(cli): retry logs.tail after journal fallback in logs follow. Thanks @anyech and @vincentkoc.</li>
<li><strong>PR #98508</strong> fix(update-check): bound npm registry JSON response read to prevent OOM. Thanks @lzyyzznl.</li>
<li><strong>PR #98496</strong> fix(tlon): bound error response body reads to prevent OOM. Thanks @Pandah97.</li>
<li><strong>PR #98554</strong> fix(openai): bound embedding batch file downloads. Thanks @sunlit-deng and @vincentkoc.</li>
<li><strong>PR #98652</strong> fix: stop invalid message timeouts from stalling.</li>
<li><strong>PR #77973</strong> fix(gateway): cap agentRunCache to prevent unbounded growth under run fan-out. Related #77976. Thanks @fede-kamel and @vincentkoc.</li>
<li><strong>PR #98525</strong> fix(agents): time out local streams without first event. Thanks @osolmaz.</li>
<li><strong>PR #94022</strong> fix(cron): persist startup catch-up deferral ids in service state to prevent read-RPC clobber. Related #93935. Thanks @RichChen01 and @vincentkoc and @yetval.</li>
<li><strong>PR #98623</strong> fix: media tools skip env-key provider plugins when auto-selecting models. Thanks @medns.</li>
<li><strong>PR #98665</strong> fix(claude-cli): return updatedInput in can_use_tool allow response for Claude Code 2.1. Related #95171. Thanks @yetval and @carterdawson.</li>
<li><strong>PR #94250</strong> fix(feishu): send blocks as independent messages when blockStreaming is enabled. Related #55027. Thanks @xialonglee and @vincentkoc and @ZichaoLong.</li>
<li><strong>PR #93379</strong> fix(whatsapp): thread authDir through command authorization and owner bypass for LID JID resolution. Related #77755. Thanks @xialonglee and @jiveshkalra.</li>
<li><strong>PR #98646</strong> fix: keep workspace rail file sections scrollable. Related #98566. Thanks @wuqxuan and @645648406-max.</li>
<li><strong>PR #98602</strong> fix: iOS Talk fallback settings opens Voice & Talk. Related #98593. Thanks @PollyBot13.</li>
<li><strong>PR #98611</strong> fix(ui): add overflow-y:auto to workspace rail sections to prevent file list overflow (fixes #98566). Thanks @zw-xysk and @645648406-max.</li>
<li><strong>PR #98619</strong> fix(qa-lab): credential lease requests fail on oversized Convex broker responses. Thanks @ZengWen-DT.</li>
<li><strong>PR #94326</strong> fix(memory-wiki): disambiguate the reserved index page stem for synthesis and ingest. Thanks @yetval and @vincentkoc.</li>
<li><strong>PR #98659</strong> fix(codex): classify get_goal read statuses as successful dynamic tool calls. Thanks @yetval.</li>
<li><strong>PR #96856</strong> fix(codex): successful sessions_spawn and goal tool results recorded as failures. Thanks @nxmxbbd.</li>
<li><strong>PR #98660</strong> fix(inworld): guard voices JSON.parse against malformed API response bodies. Thanks @solodmd.</li>
<li><strong>PR #95430</strong> fix(embedded-agent-runner): pump async streamFn through pumpStreamWithRecovery for mid-stream error recovery. Related #95429. Thanks @lzyyzznl and @vincentkoc and @alexelgier.</li>
<li><strong>PR #98644</strong> fix: tool summaries preserve emoji truncation boundaries. Thanks @ZengWen-DT.</li>
<li><strong>PR #80928</strong> fix(telegram): suppress fallback reply when plugin command returns suppressReply: true. Related #80756. Thanks @alexuser and @UnClouded77.</li>
<li><strong>PR #98701</strong> fix: prevent agents-tools message test timeouts.</li>
<li><strong>PR #92877</strong> fix(usage): make built-in footer easier to wrap on Telegram. Thanks @Marvinthebored.</li>
<li><strong>PR #98126</strong> Restore Telegram /steer for active Codex runs. Related #81594. Thanks @100yenadmin and @Kyzcreig.</li>
<li><strong>PR #92037</strong> feat(cron): on-exit schedule — wake on a watched command's exit. Thanks @anagnorisis2peripeteia.</li>
<li><strong>PR #98452</strong> feat(ios): modernize the app with iOS 26 Liquid Glass.</li>
<li><strong>PR #98006</strong> Add Telegram /login Codex pairing flow. Thanks @100yenadmin.</li>
<li><strong>PR #98735</strong> fix(telegram): preserve rich forwarded message text. Thanks @obviyus.</li>
<li><strong>PR #97962</strong> refactor(qa): use transport-native actions in flow scenarios. Thanks @RomneyDa.</li>
<li><strong>PR #98726</strong> fix(nvidia): use Nemotron Super 1M context. Thanks @eleqtrizit.</li>
<li><strong>PR #98691</strong> fix(imessage): shed emoji anywhere in poll-vote echo match. Thanks @omarshahine.</li>
<li><strong>PR #97174</strong> Fix Telegram plugin callback routing. Thanks @goldmar.</li>
<li><strong>PR #89597</strong> fix: migrate QQBot credential backups to SQLite KV.</li>
<li><strong>PR #98536</strong> feat: prepare scoped conversation capability profiles.</li>
<li><strong>PR #92274</strong> fix(agents): classify embedded prompt lock error as permanent announce failure. Related #91527. Thanks @fsdwen and @zackchiutw.</li>
<li><strong>PR #98102</strong> fix(telegram): durably retry inbound media dropped during restart (#98076). Thanks @luoyanglang and @DaveArcher18.</li>
<li><strong>PR #98755</strong> fix(cron): detach session-targeted runs. Related #98121. Thanks @obviyus and @EthanSK.</li>
<li><strong>PR #96065</strong> fix(install): manage config-secretref env refs via OPENCLAW_SERVICE_MANAGED_ENV_KEYS. Thanks @Darren2030 and @obviyus.</li>
<li><strong>PR #98666</strong> fix: diagnose Windows LAN Gateway firewall blocks. Thanks @joshavant.</li>
<li><strong>PR #98501</strong> fix(codex): rename destructive approval mode to ask. Related #98499. Thanks @kevinslin.</li>
<li><strong>PR #98775</strong> fix(telegram): survive transient getUpdates errors and stop per-send cache rewrites. Related #98772, #98773. Thanks @obviyus.</li>
<li><strong>PR #98776</strong> fix(telegram): back off, dead-letter, and tombstone spooled updates so poison messages cannot block or duplicate. Related #98774. Thanks @obviyus.</li>
<li><strong>PR #96454</strong> feat(cli): openclaw attach — launch an external harness bound to a gateway session. Thanks @anagnorisis2peripeteia and @obviyus.</li>
<li><strong>PR #98786</strong> fix(telegram): final replies no longer drop on rejected rich entities, captions, quotes, or long flood waits. Related #98778. Thanks @obviyus.</li>
<li><strong>PR #97496</strong> Doctor: expose channel plugin blocker findings. Thanks @giodl73-repo.</li>
<li><strong>PR #98792</strong> fix(ci): restore docs and test type checks.</li>
<li><strong>PR #98736</strong> improve(ios): simplify Talk controls and composer alignment.</li>
<li><strong>PR #98183</strong> fix(gateway): distinguish reachable gateway from failed status probe. Thanks @masatohoshino.</li>
<li><strong>PR #98808</strong> docs(telegram): move maintainer decisions into scoped AGENTS.md with reliability invariants. Thanks @obviyus.</li>
<li><strong>PR #98138</strong> fix: guard setDeep against empty keys array in Chrome profile decoration. Thanks @zhangLei99586.</li>
<li><strong>PR #92283</strong> fix(agents): don't inject A2A turns into isolated-cron sessions_send (#92257). Thanks @harjothkhara and @vincentkoc and @nailujac.</li>
<li><strong>PR #98812</strong> fix(codex): preserve plugin app approvals in side conversations.</li>
<li><strong>PR #97889</strong> fix(discord): guard JSON.parse against malformed API response bodies. Thanks @lsr911.</li>
<li><strong>PR #98689</strong> fix(wizard): reject loose gateway port input. Related #98681. Thanks @qingminglong.</li>
<li><strong>PR #98720</strong> fix(nostr): clear per-relay publish timeout timer to prevent dangling handles. Related #98463. Thanks @wangmiao0668000666 and @zhangLei99586.</li>
<li><strong>PR #98787</strong> fix(memory-wiki): retry transient existing-page reads in wiki_apply and chatgpt import. Thanks @yetval and @vincentkoc.</li>
<li><strong>PR #98818</strong> fix(ci): recover incomplete Swift build caches.</li>
<li><strong>PR #98811</strong> feat(ios): modernize navigation and settings. Related #98803.</li>
<li><strong>PR #98843</strong> docs: update mobile app release messaging. Thanks @joshavant.</li>
<li><strong>PR #93209</strong> test: prefer auto-cleaning temp dir helper. Thanks @hxy91819.</li>
<li><strong>PR #98789</strong> fix(telegram): sends and actions without an account id ignore the configured defaultAccount. Thanks @yetval.</li>
<li><strong>PR #98806</strong> fix(telegram): webhook updates survive crashes and restarts via durable spooling. Related #98777. Thanks @obviyus.</li>
<li><strong>PR #98688</strong> fix(fal): route grok-imagine and nano-banana-2-lite edits to correct endpoints. Thanks @davenicoll and @vincentkoc.</li>
<li><strong>PR #98891</strong> fix(agents): normalize non-array tool-result content at transcript ingest. Related #98825. Thanks @obviyus and @snowzlmbot.</li>
<li><strong>PR #98781</strong> fix(imessage): poll render vote-cue, cross-run echo suppression, and comment fold. Thanks @omarshahine.</li>
<li><strong>PR #97500</strong> Doctor: expose tool result cap findings. Thanks @giodl73-repo.</li>
<li><strong>PR #98769</strong> fix: Telegram replies duplicate recent context after sent replies. Related #98767. Thanks @rabsef-bicrym.</li>
<li><strong>PR #98933</strong> fix(agents): stop gateway crash from wedged claude-cli turns and persist heartbeat session bindings. Related #98894, #98895. Thanks @obviyus.</li>
<li><strong>PR #98934</strong> fix(agents): recover claude-cli context-overflow sessions and keep retry artifacts alive. Related #98897. Thanks @obviyus.</li>
<li><strong>PR #98908</strong> refactor(agents): fold assistant string normalization into transcript ingest. Thanks @obviyus.</li>
<li><strong>PR #98738</strong> fix(agents): fail fast with attributable reason after MCP stdio session dies mid-run. Thanks @masatohoshino and @vincentkoc.</li>
<li><strong>PR #98879</strong> fix: backup skips volatile cache paths. Related #98865. Thanks @ZengWen-DT and @vincentkoc and @carterstebbins23-spec.</li>
<li><strong>PR #98942</strong> fix(agents): unify claude-cli output classification across live and one-shot paths. Related #98896. Thanks @obviyus.</li>
<li><strong>PR #98932</strong> fix(anthropic): restore Fable 5 Vertex simple completions.</li>
<li><strong>PR #98947</strong> fix(cron): restore persistent session targets.</li>
<li><strong>PR #96523</strong> fix(agents): preserve embedded OpenAI completions usage. Thanks @ly85206559 and @vincentkoc.</li>
<li><strong>PR #98758</strong> perf(build): reduce plugin SDK declaration package size. Related #98757. Thanks @RomneyDa.</li>
<li><strong>PR #98877</strong> fix(mattermost): include later team members in peer directory. Related #98871. Thanks @qingminglong.</li>
<li><strong>PR #98953</strong> feat(ios): refine the chat experience. Related #98929.</li>
<li><strong>PR #98876</strong> fix(terminal): preserve sibling home-prefix paths. Related #98872. Thanks @qingminglong.</li>
<li><strong>PR #98930</strong> feat(ios): PR1 brand color palette overhaul. Thanks @joelnishanth.</li>
<li><strong>PR #94566</strong> fix(android): make offline chat actionable. Thanks @Tosko4.</li>
<li><strong>PR #98955</strong> fix(agents): preserve fresh tool result text under aggregate cap. Related #98874. Thanks @momothemage and @lamkan0210.</li>
<li><strong>PR #98059</strong> [codex] Support Android selected photo access. Thanks @NianJiuZst.</li>
<li><strong>PR #98914</strong> fix(android): return settings details to their originating tab on Back. Thanks @Lokimorty.</li>
<li><strong>PR #98898</strong> fix(ios): back from settings details returns to the originating screen. Thanks @Lokimorty.</li>
<li><strong>PR #98235</strong> fix(feishu): include video upload duration. Thanks @areslp.</li>
<li><strong>PR #98966</strong> fix(discord): gate guild metadata reads [AI]. Thanks @pgondhi987.</li>
<li><strong>PR #98985</strong> fix: clean up iOS About page copy. Related #98943. Thanks @sahilsatralkar.</li>
<li><strong>PR #98856</strong> fix(ios): gateway error shows twice on the Settings Gateway page. Thanks @Lokimorty.</li>
<li><strong>PR #98936</strong> fix: Control row icons use inconsistent row styling (iOS). Related #98916. Thanks @sahilsatralkar.</li>
<li><strong>PR #98040</strong> [codex] Fix Android camera snap cleanup. Thanks @NianJiuZst.</li>
<li><strong>PR #99039</strong> fix(macos): stop runtime config-health sidecar access. Related #98917. Thanks @momothemage and @P51moustache.</li>
<li><strong>PR #92667</strong> ci: add process exec CodeQL security shard. Thanks @hxy91819.</li>
<li><strong>PR #98055</strong> [codex] Gate Android Talk capture starts in background. Thanks @NianJiuZst.</li>
<li><strong>PR #98067</strong> [codex] Cancel Android gateway pending RPCs on close. Thanks @NianJiuZst.</li>
<li><strong>PR #98698</strong> fix(android): show specific gateway auth-recovery reason instead of generic label. Related #98046. Thanks @masatohoshino and @ccaprani.</li>
<li><strong>PR #83826</strong> test(android): poll for stale TLS probe cleanup in auth test. Thanks @NeatGuyCoding.</li>
<li><strong>PR #98983</strong> fix(agents): handle variadic claude --mcp-config and serialize gemini credential staging. Related #98944, #98945. Thanks @obviyus.</li>
<li><strong>PR #99145</strong> fix(auto-reply): suppress room-event notice leaks. Thanks @obviyus.</li>
<li><strong>PR #99144</strong> fix(auto-reply): default room events to silence. Thanks @obviyus.</li>
<li><strong>PR #98608</strong> fix: Mattermost fails to load after configured plugin repair. Related #98564. Thanks @jacobtomlinson.</li>
<li><strong>PR #99143</strong> fix(telegram): keep group history always on. Related #99142. Thanks @obviyus.</li>
<li><strong>PR #99159</strong> fix(agents): claude-cli lifecycle cleanup — loopback fail-loud, exit-0 failover, bounded reseed, image sweep, one prepare cleanup owner. Related #98946. Thanks @obviyus.</li>
<li><strong>PR #98391</strong> Expose disk space doctor lint findings. Thanks @giodl73-repo.</li>
<li><strong>PR #98835</strong> fix(config/sessions): narrow reply-session initialization revision to identity fields. Related #98672. Thanks @moguangyu5-design and @jalehman and @AaronFaby.</li>
<li><strong>PR #99123</strong> fix(android): ignore chat events with missing assistant role in voice text extraction. Thanks @ly85206559 and @cursoragent.</li>
<li><strong>PR #99147</strong> fix(android): preserve split SMS permission grants. Thanks @NianJiuZst.</li>
<li><strong>PR #99107</strong> fix(android): bracket IPv6 hosts in manual gateway URL composition. Thanks @ly85206559 and @cursoragent.</li>
<li><strong>PR #99158</strong> fix: require Android contact and calendar write permissions in onboarding. Thanks @NianJiuZst.</li>
<li><strong>PR #99110</strong> fix(android): strip ws scheme prefix from manual gateway host input. Related #87216. Thanks @ly85206559 and @cursoragent and @ruben2000de.</li>
<li><strong>PR #99212</strong> fix(ci): session concurrency test flakes during child handshake.</li>
<li><strong>PR #94385</strong> fix(feishu): preserve button command values in fallback text and add Feishu comment guidance with callback privacy. Related #69754. Thanks @xialonglee and @1yihui.</li>
<li><strong>PR #98563</strong> fix: route iOS OpenAI realtime Talk through WebRTC. Thanks @PollyBot13.</li>
<li><strong>PR #99204</strong> fix: require Android contact and calendar write permissions. Thanks @NianJiuZst.</li>
<li><strong>PR #99134</strong> fix: OAuth refresh failures report reauth instead of stale success. Related #99120. Thanks @100yenadmin.</li>
<li><strong>PR #99153</strong> fix: clean up Android camera clips on cancellation. Thanks @NianJiuZst.</li>
<li><strong>PR #99118</strong> [codex] fix(memory-lancedb): align apache arrow peer dependency. Related #90295. Thanks @allenhurff and @joshavant.</li>
<li><strong>PR #98066</strong> fix: keep iOS LAN QR pairing authenticated after bootstrap. Related #98064. Thanks @ooiuuii.</li>
<li><strong>PR #99155</strong> fix: stop iOS screen recording after cancellation. Thanks @NianJiuZst.</li>
<li><strong>PR #95973</strong> fix(telegram): explain disabled plugin approval failures. Related #95800. Thanks @MonkeyLeeT and @ChrisBot2026.</li>
<li><strong>PR #99233</strong> fix: ignore test-only network CI guard lines. Thanks @joshavant.</li>
<li><strong>PR #98951</strong> fix: strict guarded fetch fails before managed proxy DNS. Related #98925. Thanks @momothemage and @sandl99.</li>
<li><strong>PR #99137</strong> fix: prevent Voice Wake crash after Talk audio capture. Thanks @PollyBot13.</li>
<li><strong>PR #99052</strong> fix: Update Dark/Light mode UI control appearance. Related #98995. Thanks @sahilsatralkar.</li>
<li><strong>PR #99245</strong> fix(ios): return chat to originating control detail. Thanks @Solvely-Colin.</li>
<li><strong>PR #92602</strong> fix(android): queue node events until gateway connect. Related #79552. Thanks @ashishpatel26 and @hectorrp13.</li>
<li><strong>PR #98277</strong> fix: keep Android gateway settings save idempotent. Thanks @Solvely-Colin.</li>
<li><strong>PR #99256</strong> fix(auto-reply): single canonical group history and deduped turn metadata. Related #99218. Thanks @obviyus.</li>
<li><strong>PR #99259</strong> fix(android): use Bluetooth microphones for voice capture. Related #96241. Thanks @gwtaylor.</li>
<li><strong>PR #98751</strong> test(qa): prove native command targeting across QA transports. Thanks @RomneyDa.</li>
<li><strong>PR #98779</strong> test(qa): cover expanded Crabline bindings. Thanks @RomneyDa.</li>
<li><strong>PR #99262</strong> test(qa): cover Crabline Signal sends. Thanks @RomneyDa.</li>
<li><strong>PR #99261</strong> refactor(shared): establish lazy runtime loader foundation. Thanks @RomneyDa.</li>
<li><strong>PR #99264</strong> test(qa): cover Crabline Mattermost sends. Thanks @RomneyDa.</li>
<li><strong>PR #99265</strong> test(qa): cover Crabline Matrix sends. Thanks @RomneyDa.</li>
<li><strong>PR #98400</strong> Expose heartbeat template doctor lint findings. Thanks @giodl73-repo.</li>
<li><strong>PR #98695</strong> Expose legacy plugin manifest doctor lint findings. Thanks @giodl73-repo.</li>
<li><strong>PR #99278</strong> refactor(shared): consolidate core leaf lazy loaders. Thanks @RomneyDa.</li>
<li><strong>PR #99274</strong> fix(zalo): match native bot identity fields. Thanks @RomneyDa.</li>
<li><strong>PR #99126</strong> test(discord): clarify and guardrail gateway proxy selection. Related #98266. Thanks @svuppala2006 and @joshavant and @sallyom.</li>
<li><strong>PR #99290</strong> feat(ios): add licenses settings screen. Thanks @joshavant.</li>
<li><strong>PR #98907</strong> fix(telegram): distinguish and render streamed reasoning/commentary progress lanes. Thanks @Marvinthebored.</li>
<li><strong>PR #99294</strong> fix(qa): stagger isolated worker startup. Thanks @RomneyDa.</li>
<li><strong>PR #99276</strong> fix(memory-wiki): source imports crash on unreadable pages. Thanks @obviyus.</li>
<li><strong>PR #99296</strong> refactor(shared): consolidate gateway and stateful runtime lazy loaders. Thanks @RomneyDa.</li>
<li><strong>PR #98768</strong> Allow alternate Zalo Bot API roots. Thanks @RomneyDa.</li>
<li><strong>PR #99298</strong> refactor(shared): consolidate Discord Slack and Telegram lazy loaders. Thanks @RomneyDa.</li>
<li><strong>PR #99307</strong> fix(memory-wiki): avoid implicit error coercion. Thanks @RomneyDa.</li>
<li><strong>PR #99306</strong> feat(auto-reply): persist ambient room events as transcript rows. Related #99257. Thanks @obviyus.</li>
<li><strong>PR #99302</strong> refactor(shared): consolidate remaining channel lazy loaders. Thanks @RomneyDa.</li>
<li><strong>PR #99303</strong> test(qa): cover Crabline Zalo transport. Thanks @RomneyDa.</li>
<li><strong>PR #99299</strong> feat(android): add licenses settings screen. Thanks @joshavant.</li>
<li><strong>PR #99220</strong> fix(ios): onboarding Retry Connection does nothing after editing gateway details. Related #99219. Thanks @abdullahtas0.</li>
<li><strong>PR #98749</strong> refactor(shared): consolidate provider and utility lazy loaders. Thanks @RomneyDa.</li>
<li><strong>PR #99355</strong> fix(ci): restore Telegram and plugin SDK guard checks. Thanks @RomneyDa.</li>
<li><strong>PR #88899</strong> fix(android): render chat content through Markdown. Related #88014. Thanks @Pluviobyte and @Iman-Sharif.</li>
<li><strong>PR #99310</strong> test(qa): migrate channel streaming evidence to transport flow. Thanks @RomneyDa.</li>
<li><strong>PR #99350</strong> fix(ios): add Photos permission controls. Related #99046. Thanks @Tony-ooo.</li>
<li><strong>PR #99361</strong> refactor(plugins): consolidate record guards. Thanks @RomneyDa.</li>
<li><strong>PR #99359</strong> refactor(shared): consolidate core record guards. Thanks @RomneyDa.</li>
<li><strong>PR #97208</strong> fix: avoid DeepSeek-native thinking on OpenRouter V4. Related #97196. Thanks @NianJiuZst and @patelmm79.</li>
<li><strong>PR #99385</strong> fix(sessions): scope ambient transcript watermark to session id. Related #99373. Thanks @obviyus.</li>
<li><strong>PR #99389</strong> fix(auto-reply): restore per-turn message-tool delivery contract. Related #99371. Thanks @obviyus.</li>
<li><strong>PR #98269</strong> fix(android): derive Voice readiness from Gateway catalog. Related #98268. Thanks @Solvely-Colin.</li>
<li><strong>PR #92872</strong> fix(qqbot): allow scoped sandbox media sends. Thanks @zhangguiping-xydt and @sliverp.</li>
<li><strong>PR #99414</strong> fix(android): expose exact gateway recovery actions. Related #98045, #98046. Thanks @ccaprani.</li>
<li><strong>PR #99289</strong> feat: session-first sidebar, compact context ring, and warm light theme for the Control UI. Related #99288.</li>
<li><strong>PR #99234</strong> feat(nodes): add auto-discovered Ollama inference. Related #99228.</li>
<li><strong>PR #97095</strong> fix: memory_search honors generic embedding providers. Thanks @849261680.</li>
<li><strong>PR #98841</strong> fix(gateway): include session label in deriveSessionTitle fallback chain. Related #98742. Thanks @SunnyShu0925 and @BSG2000.</li>
<li><strong>PR #99301</strong> fix(feishu): catch unhandled promise rejection in streaming card flush timer. Thanks @lwy-2.</li>
<li><strong>PR #99391</strong> fix(compaction): count nested tool result content. Related #99375. Thanks @LZY3538 and @imchloe92.</li>
<li><strong>PR #99407</strong> fix(daemon): avoid loading full gateway logs during diagnostics. Thanks @sunlit-deng.</li>
<li><strong>PR #99291</strong> Fix/issue 98958 gateway lock fd leak. Related #98958. Thanks @chenyangjun-xy and @zhangLei99586.</li>
<li><strong>PR #99475</strong> fix(ios): contacts.add crashes the app via unfetched CNContactFormatter keys. Thanks @abdullahtas0.</li>
<li><strong>PR #98003</strong> fix(anthropic): wire buildGuardedModelFetch into the Cloudflare createClient branch. Thanks @wangmiao0668000666.</li>
<li><strong>PR #99425</strong> fix: strip conda env marker from host tool runs. Related #99424. Thanks @ooiuuii and @krissding.</li>
<li><strong>PR #99398</strong> fix(cli): reject unsafe sessions tail counts. Thanks @qingminglong.</li>
<li><strong>PR #98855</strong> fix: chat.send no reply when thinking metadata is set. Thanks @jesse-merhi.</li>
<li><strong>PR #98752</strong> Rework Android gateway onboarding setup. Thanks @jesse-merhi.</li>
<li><strong>PR #99446</strong> fix(agents): preserve fd find failures. Thanks @zhangguiping-xydt.</li>
<li><strong>PR #99152</strong> fix(config): use Object.hasOwn instead of in operator in restoreOriginalValueOrThrow. Thanks @zenglingbiao.</li>
<li><strong>PR #99460</strong> fix: redact dotted API key activity previews. Related #99459. Thanks @ooiuuii.</li>
<li><strong>PR #99455</strong> fix: long mobile media recordings time out. Thanks @NianJiuZst.</li>
<li><strong>PR #99410</strong> fix(subagents): match requesterSessionKey when controllerSessionKey differs in list filter. Related #75593. Thanks @sheyanmin and @aaajiao.</li>
<li><strong>PR #98791</strong> feat(signal): show status reactions during inbound replies. Thanks @jesse-merhi.</li>
<li><strong>PR #98683</strong> fix(ui): keep landscape composer compact. Related #98615. Thanks @qingminglong and @jin-li.</li>
<li><strong>PR #99428</strong> fix(logging): redact Telegram bot tokens from timeout URLs. Related #96982. Thanks @xialonglee and @liuhaiyang14.</li>
<li><strong>PR #99217</strong> Preserve Codex output after missing turn completion. Thanks @100yenadmin and @Sedrak-Hovhannisyan and @fuller-stack-dev.</li>
<li><strong>PR #99520</strong> fix(gateway): declare the dev agent required by the gateway e2e session key. Related #99513. Thanks @masatohoshino.</li>
<li><strong>PR #95738</strong> feat(signal): add target aliases. Thanks @jesse-merhi.</li>
<li><strong>PR #98258</strong> improve: make native chat scrolling reader-managed. Related #98255. Thanks @christopheraaronhogg.</li>
<li><strong>PR #99506</strong> fix: keep always-on group fallback messages in dispatch. Related #99457. Thanks @LZY3538 and @zqchris.</li>
<li><strong>PR #89671</strong> fix(google-meet): force English Meet UI via hl=en so automation works on any locale. Thanks @Unayung.</li>
<li><strong>PR #98130</strong> fix(infra): bound jsonl-socket response buffer to prevent OOM. Thanks @Pick-cat.</li>
<li><strong>PR #99526</strong> fix(agents): preserve primitive tool result output. Related #99523. Thanks @snowzlm.</li>
<li><strong>PR #99525</strong> fix(imessage): recognize bare hex group chat identifiers as chat targets. Related #89235. Thanks @MatthewDelprado.</li>
<li><strong>PR #99098</strong> fix: harden native i18n identifier filtering. Thanks @hxy91819.</li>
<li><strong>PR #99099</strong> fix: harden docs map heading rendering. Thanks @hxy91819.</li>
<li><strong>PR #98725</strong> Expose legacy plugin dependency doctor lint findings. Thanks @giodl73-repo.</li>
<li><strong>PR #99595</strong> fix(agents): keep cli session binding facts session-stable. Related #99372. Thanks @obviyus.</li>
<li><strong>PR #90152</strong> fix(telegram): stop duplicate fallback when dispatch fails after final reply. Thanks @zhangguiping-xydt.</li>
<li><strong>PR #98729</strong> Expose stale plugin runtime symlink doctor lint findings. Thanks @giodl73-repo.</li>
<li><strong>PR #99591</strong> fix(android): preserve numeric invoke error codes. Thanks @ly85206559.</li>
<li><strong>PR #98406</strong> Expose WhatsApp responsiveness doctor lint findings. Thanks @giodl73-repo.</li>
<li><strong>PR #99570</strong> fix(android): reject IPv6 zone IDs in gateway endpoint URLs. Thanks @ly85206559 and @cursoragent.</li>
<li><strong>PR #99557</strong> fix(android): filter device and internal sessions from thread picker. Thanks @ly85206559 and @cursoragent.</li>
<li><strong>PR #99568</strong> fix(android): block self-package notification forwarding in allowlist mode. Thanks @ly85206559 and @cursoragent.</li>
<li><strong>PR #99592</strong> fix(android): parse talk directive aliases case-insensitively. Thanks @ly85206559.</li>
<li><strong>PR #99477</strong> fix: avoid iOS node permission prompts. Thanks @NianJiuZst.</li>
<li><strong>PR #99374</strong> improve(qa): standardize script evidence output. Thanks @RomneyDa.</li>
<li><strong>PR #99468</strong> improve: tighten iOS Control row density. Related #99439. Thanks @sahilsatralkar.</li>
<li><strong>PR #99642</strong> test: avoid cross-OS socket close event race. Thanks @RomneyDa.</li>
<li><strong>PR #89967</strong> fix(macos): LaunchAgent starts gateway on external home volumes. Related #87199. Thanks @zhangguiping-xydt and @joshdaynard.</li>
<li><strong>PR #98613</strong> fix(media): guard ffprobe JSON parse against malformed output. Thanks @Pick-cat.</li>
<li><strong>PR #97839</strong> fix: log terminal session persistence failures. Related #97795. Thanks @LZY3538 and @cxbAsDev and @snotty and @lin-hongkuan and @849261680 and @qingminglong and @anyech and @masatohoshino and @Simon-XYDT and @xialonglee and @nankingjing and @aniruddhaadak80.</li>
<li><strong>PR #99247</strong> feat: clarify iOS Location Always permission flow. Thanks @PollyBot13.</li>
<li><strong>PR #98224</strong> fix(auto-reply): strip stray punctuation before silent-reply token detection. Thanks @SunnyShu0925.</li>
<li><strong>PR #97328</strong> fix(google): rotate Gemini API keys for LLM requests. Thanks @MonkeyLeeT.</li>
<li><strong>PR #99661</strong> fix(macos): remote mode fails with managed SSH aliases.</li>
<li><strong>PR #99649</strong> fix(qa): defer partial Crabline recorder rows. Related #99648. Thanks @RomneyDa.</li>
<li><strong>PR #99211</strong> Expose legacy cron store doctor lint findings. Thanks @giodl73-repo.</li>
<li><strong>PR #99629</strong> test(qa): redact script evidence diagnostics. Thanks @RomneyDa.</li>
<li><strong>PR #99647</strong> Fix Slack retry for session init conflicts. Thanks @steipete-oai.</li>
<li><strong>PR #99628</strong> improve: enforce canonical QA scenario ownership. Related #99627. Thanks @RomneyDa.</li>
<li><strong>PR #99632</strong> refactor(qa): simplify transport adapter contracts. Related #99622. Thanks @RomneyDa.</li>
<li><strong>PR #99656</strong> test(qa): use full-turn budget for native stop recovery. Related #99655. Thanks @RomneyDa.</li>
<li><strong>PR #99605</strong> fix(google): bound OAuth token error response reads. Thanks @mushuiyu886.</li>
<li><strong>PR #99679</strong> fix(qa): consume Crabline events without recorder polling. Related #99664. Thanks @RomneyDa.</li>
<li><strong>PR #99687</strong> refactor(infra): consolidate SHA-256 digest helpers. Related #99675. Thanks @RomneyDa.</li>
<li><strong>PR #98796</strong> [AI-assisted] feat(android): add chat command controls. Thanks @IWhatsskill.</li>
<li><strong>PR #99671</strong> refactor: consolidate number coercion callers. Related #99667. Thanks @RomneyDa.</li>
<li><strong>PR #99640</strong> fix: CLI agent session resume churns when owner and non-owner alternate in a group. Related #99633. Thanks @obviyus.</li>
<li><strong>PR #99682</strong> refactor(models): consolidate catalog ref parsing. Related #99674. Thanks @RomneyDa.</li>
<li><strong>PR #99566</strong> fix(exec): avoid splitting surrogate pairs in approval display. Thanks @mikasa0818.</li>
<li><strong>PR #99702</strong> refactor: remove redundant unique-list aliases. Related #99697. Thanks @RomneyDa.</li>
<li><strong>PR #99246</strong> feat(ios): implement branded typography design system. Thanks @joelnishanth and @cursoragent.</li>
<li><strong>PR #99710</strong> fix(build): Docker package preparation misses plugin SDK declarations. Thanks @RomneyDa.</li>
<li><strong>PR #99715</strong> refactor: consolidate image data URL formatting. Thanks @RomneyDa.</li>
<li><strong>PR #98764</strong> fix(ui): copy workspace file paths over plain HTTP. Related #98759. Thanks @ZengWen-DT and @adinballew.</li>
<li><strong>PR #99678</strong> fix(build): forward default exports through stable runtime aliases. Related #99677. Thanks @headbouyJB and @vincentkoc.</li>
<li><strong>PR #99370</strong> fix(file-transfer): don't inline zero-byte files as image content blocks. Thanks @2loch-ness6 and @vincentkoc.</li>
<li><strong>PR #99540</strong> fix(doctor): shell completion install fails doctor when profile is read-only. Related #99237. Thanks @rballiance and @hunglp6d.</li>
<li><strong>PR #99718</strong> refactor(text): consolidate cleanup owners. Thanks @RomneyDa.</li>
<li><strong>PR #98819</strong> fix(plugins): resolve public artifacts from installed plugin roots. Related #98740. Thanks @amknight and @KelTech-Services.</li>
<li><strong>PR #99721</strong> refactor: consolidate async timing helpers. Thanks @RomneyDa.</li>
<li><strong>PR #99722</strong> fix: group agent session resume churns when messages toggle between @-mention and plain. Related #99696. Thanks @obviyus.</li>
<li><strong>PR #99676</strong> refactor: consolidate string reader mechanics. Related #99663. Thanks @RomneyDa.</li>
<li><strong>PR #99705</strong> improve(qa): execute runtime scenarios through Docker. Thanks @RomneyDa.</li>
<li><strong>PR #99231</strong> improve: native iOS look with stock SwiftUI navigation, forms, chat, and talk visualizer. Related #99195. Thanks @marvkr.</li>
<li><strong>PR #99549</strong> fix(auto-reply): don't block reply completion on transcript mirror. Thanks @Shagrat2.</li>
<li><strong>PR #99736</strong> fix(qa): prevent smoke gateways from losing built files. Related #99734. Thanks @RomneyDa.</li>
<li><strong>PR #99658</strong> feat(providers): add ClawRouter routing and quotas. Related #99657.</li>
<li><strong>PR #99238</strong> Expose channel preview warning doctor findings. Thanks @giodl73-repo.</li>
<li><strong>PR #99759</strong> fix(providers): resolve ClawRouter auth-profile models.</li>
<li><strong>PR #99561</strong> fix: keep OpenClaw control tools available when tool_search misroutes. Related #99464. Thanks @100yenadmin and @joshavant.</li>
<li><strong>PR #99750</strong> refactor: consolidate exact boolean coercion. Thanks @RomneyDa.</li>
<li><strong>PR #99753</strong> refactor: consolidate abort primitives. Thanks @RomneyDa.</li>
<li><strong>PR #99426</strong> feat: add slash command picker in chat composer. Thanks @VicZhang6 and @Solvely-Colin.</li>
<li><strong>PR #99771</strong> refactor: consolidate free-port test helpers. Thanks @RomneyDa.</li>
<li><strong>PR #99755</strong> refactor: consolidate policy-free deferred promises. Thanks @RomneyDa.</li>
<li><strong>PR #99719</strong> refactor(net): consolidate URL protocol predicates. Thanks @RomneyDa.</li>
<li><strong>PR #99743</strong> fix: avoid native command QA timeout under CI contention. Thanks @RomneyDa.</li>
<li><strong>PR #99368</strong> fix(qa): prevent qa smoke ci timeouts under gateway concurrency. Thanks @RomneyDa.</li>
<li><strong>PR #99778</strong> refactor(scripts): share regexp literal escaping. Thanks @RomneyDa.</li>
<li><strong>PR #99737</strong> test: add executable runtime fixture canaries. Thanks @RomneyDa.</li>
<li><strong>PR #99735</strong> test(qa): exercise Gateway and MCP scenarios over real transports. Thanks @RomneyDa.</li>
<li><strong>PR #99784</strong> fix(qa): stabilize primary smoke runtime evidence. Thanks @RomneyDa.</li>
<li><strong>PR #99726</strong> fix(onboard): skip unavailable skill installers via lifecycle readiness preflight. Thanks @fuller-stack-dev and @Sedrak-Hovhannisyan.</li>
<li><strong>PR #99793</strong> ci: reuse one package in QA smoke.</li>
<li><strong>PR #99767</strong> feat(macos): install and run the local Gateway automatically. Related #99764.</li>
<li><strong>PR #99820</strong> ci: increase artifact Testbox memory.</li>
<li><strong>PR #99822</strong> feat: soft-resume CLI sessions on prompt drift instead of hard invalidation. Related #99729. Thanks @obviyus.</li>
<li><strong>PR #99129</strong> fix(markdown-core): use Object.hasOwn instead of in operator in parseFrontmatterBlock. Thanks @zenglingbiao and @vincentkoc.</li>
<li><strong>PR #99803</strong> fix(mcp): suppress unhandled error on stderr pipe in stdio transport. Thanks @cxbAsDev and @vincentkoc.</li>
<li><strong>PR #99802</strong> fix(supervisor): suppress unhandled stream errors on child stdout/stderr. Thanks @cxbAsDev and @vincentkoc.</li>
<li><strong>PR #99800</strong> fix(ssh-tunnel): handle spawn error to prevent unhandled rejection crash. Thanks @cxbAsDev and @vincentkoc.</li>
<li><strong>PR #99653</strong> fix(cli): hide synthetic Claude reseed prompts. Related #99646. Thanks @ZOOWH and @vincentkoc and @Jeehut.</li>
<li><strong>PR #99728</strong> fix(config): preserve recovery state during config-health migration. Related #99280. Thanks @joshavant and @jalehman and @ccbridle.</li>
<li><strong>PR #99839</strong> fix(gateway): preserve legacy reseed attachments. Thanks @vincentkoc.</li>
<li><strong>PR #99830</strong> fix: stop rubber-band bounce of the Control UI shell in the Mac app web view.</li>
<li><strong>PR #99851</strong> fix(agents): preserve fallback tool-call hints. Thanks @vincentkoc.</li>
<li><strong>PR #98994</strong> fix(line): truncate outbound altText, location, menu, and code fields on code point boundaries. Thanks @LEXES7 and @vincentkoc.</li>
<li><strong>PR #99846</strong> fix(config): restrict config paths to own properties. Thanks @vincentkoc and @zenglingbiao.</li>
<li><strong>PR #99861</strong> fix(telegram): one outbound rich-HTML normalizer and one rich-to-plain fallback policy. Related #99833. Thanks @obviyus.</li>
<li><strong>PR #99866</strong> fix(telegram): classify inbound events from the canonical mention decision so direct mentions stop lurking. Related #99854. Thanks @obviyus.</li>
<li><strong>PR #99832</strong> fix: reject incompatible Node 23 runtimes. Thanks @fuller-stack-dev.</li>
<li><strong>PR #99243</strong> Polish iOS onboarding and chat critique fixes. Thanks @jcooley8.</li>
<li><strong>PR #99714</strong> perf(usage): shrink durable usage cache entries. Related #99511. Thanks @dexhunter and @wayne524.</li>
<li><strong>PR #99838</strong> feat: declutter the Control UI shell — reasoning effort slider, borderless composer controls, version out of the sidebar. Related #99837.</li>
<li><strong>PR #99600</strong> fix: outbound recovery can replay already sent replies. Thanks @zhangguiping-xydt.</li>
<li><strong>PR #99891</strong> fix(agents): preserve images on CLI fallback. Thanks @vincentkoc.</li>
<li><strong>PR #99821</strong> feat(codex): share native threads across Codex clients. Related #99781.</li>
<li><strong>PR #99893</strong> fix(discord): hide internal Code Mode wait progress.</li>
<li><strong>PR #99850</strong> refactor: consolidate duplicated plugin state and doctor migration plumbing onto SDK seams. Related #99841.</li>
<li><strong>PR #99901</strong> refactor: consolidate core stream cleanup, watchdog locality, and approval text duplication.</li>
<li><strong>PR #99635</strong> feat(whatsapp): add requester-bound MeowCaller calls. Related #99634.</li>
<li><strong>PR #99527</strong> fix(edit): keep mismatch hint truncation unicode-safe. Thanks @mikasa0818.</li>
<li><strong>PR #99902</strong> fix(agents): preserve mixed image attachment order. Thanks @vincentkoc.</li>
<li><strong>PR #99816</strong> fix(agents): derive conversation scope from trusted group facts.</li>
<li><strong>PR #99817</strong> refactor(agents): require one resolved capability profile per run.</li>
<li><strong>PR #99877</strong> fix(slack): preserve time colons in interactive labels. Related #99823. Thanks @qingminglong and @rodja.</li>
<li><strong>PR #99915</strong> feat: allow custom sandbox image tags.</li>
<li><strong>PR #99909</strong> improve: speed up QA report source errors.</li>
<li><strong>PR #99855</strong> fix(transcripts): mark delivery mirrors as artifacts. Thanks @vincentkoc.</li>
<li><strong>PR #99900</strong> refactor(ui): dedupe chat styles and make the styles.css import order real. Related #99899.</li>
<li><strong>PR #99931</strong> fix(slack): warn when bot token authenticates as user. Related #98357. Thanks @ooiuuii.</li>
<li><strong>PR #99879</strong> fix(tui): coalesce busy submit notices. Thanks @vincentkoc.</li>
<li><strong>PR #99940</strong> improve: speed up plugin SDK surface checks.</li>
<li><strong>PR #99944</strong> fix(slack): remove unused unsafe auth fetch helper. Thanks @miorbnli.</li>
<li><strong>PR #99932</strong> refactor: consolidate markdown code fences, error coercion, and byte-identical helper pairs.</li>
<li><strong>PR #99906</strong> fix(anthropic): fall back to Claude Opus 4.8 when Fable 5 safety classifiers decline a request.</li>
<li><strong>PR #99945</strong> test: skip real restart waits in update CLI tests.</li>
<li><strong>PR #99949</strong> fix: improve agent runtime correctness from upstream Pi. Related #99924.</li>
<li><strong>PR #99962</strong> docs: clarify plugin package live proof. Thanks @hxy91819.</li>
<li><strong>PR #99955</strong> [codex] fix(copilot): preserve BYOK bearer auth through proxy. Thanks @hxy91819.</li>
<li><strong>PR #99973</strong> docs: sync plugin package snippets.</li>
<li><strong>PR #99969</strong> test: speed up Crabbox wrapper coverage.</li>
<li><strong>PR #99988</strong> test: speed up Docker scheduler coverage.</li>
<li><strong>PR #95463</strong> fix(slack): bridge presentation capabilities and renderPresentation through channel outbound facade. Related #95440. Thanks @ZOOWH and @kayla-waves.</li>
<li><strong>PR #99249</strong> Keep workspace suggestions opt-in for doctor lint. Thanks @giodl73-repo.</li>
<li><strong>PR #99352</strong> feat(release): add monthly npm extended-stable publication. Thanks @kevinslin.</li>
<li><strong>PR #100002</strong> perf: defer realtime smoke live imports.</li>
<li><strong>PR #95313</strong> fix(slack): allow channel-id reads for name-allowlisted channels. Thanks @jontsai.</li>
<li><strong>PR #100008</strong> improve: speed up package candidate safety tests.</li>
<li><strong>PR #94672</strong> feat: pair mobile devices from the Control UI. Thanks @bkudiess and @douhualili.</li>
<li><strong>PR #85507</strong> fix(slack): include assistant loading messages. Thanks @emergentash.</li>
<li><strong>PR #96312</strong> fix(slack): stop logging inbound message previews. Thanks @steipete-oai.</li>
<li><strong>PR #99717</strong> test(qa): run the real CLI channel picker. Thanks @RomneyDa.</li>
<li><strong>PR #100035</strong> fix(agents): replay images across cli fallback. Thanks @vincentkoc.</li>
<li><strong>PR #99766</strong> refactor(voice-call): reuse shared webhook path normalization. Thanks @RomneyDa.</li>
<li><strong>PR #99786</strong> refactor: reuse shared number clamp. Thanks @RomneyDa.</li>
<li><strong>PR #99852</strong> fix(acpx): handle MCP proxy stdio pipe errors. Thanks @sunlit-deng and @vincentkoc.</li>
<li><strong>PR #98510</strong> feat: add session thread management. Related #88568. Thanks @Maziyang2.</li>
<li><strong>PR #99777</strong> refactor(providers): table-drive paired catalogs. Thanks @RomneyDa.</li>
<li><strong>PR #100053</strong> fix: tests in nested git worktrees load bundled plugins from the enclosing checkout. Related #100052.</li>
<li><strong>PR #100039</strong> improve(matrix): generate executable QA route and state evidence. Related #100038. Thanks @RomneyDa.</li>
<li><strong>PR #97727</strong> fix(slack): include attachment text in thread context. Thanks @chthtlo.</li>
<li><strong>PR #100051</strong> fix(telegram): report inbound media download failures. Related #100000. Thanks @batyaro777.</li>
<li><strong>PR #100027</strong> chore: update dependencies. Related #99952.</li>
<li><strong>PR #99788</strong> refactor(infra): consolidate identifier digest mechanics. Thanks @RomneyDa.</li>
<li><strong>PR #99790</strong> refactor(models): share strict model ref parsing. Thanks @RomneyDa.</li>
<li><strong>PR #99744</strong> refactor(infra): consolidate bounded HTTP body reads. Thanks @RomneyDa.</li>
<li><strong>PR #100040</strong> fix(ui): localize mobile pairing in Hindi and Russian.</li>
<li><strong>PR #99960</strong> fix(cron): roll back live scheduler state when persisting add/update/remove fails. Thanks @masatohoshino and @vincentkoc.</li>
<li><strong>PR #99811</strong> feat(update): support extended-stable package updates. Related #99808. Thanks @kevinslin.</li>
<li><strong>PR #99785</strong> refactor: consolidate unique string list helpers. Thanks @RomneyDa.</li>
<li><strong>PR #98559</strong> improve(web-fetch): speed up provider fallback loading. Thanks @vincentkoc.</li>
<li><strong>PR #99250</strong> Keep legacy WhatsApp crontab lint opt-in. Thanks @giodl73-repo.</li>
<li><strong>PR #83718</strong> fix(memory-core): treat dreaming fence marker lines as inside-fence in promotion guard (#80613). Thanks @grifjef and @p0pfan.</li>
<li><strong>PR #100081</strong> fix(gateway): harden embedded terminal policy. Related #77362. Thanks @rayncc.</li>
<li><strong>PR #100006</strong> fix: roll rounded durations into seconds. Related #99978. Thanks @qingminglong.</li>
<li><strong>PR #100083</strong> chore: update oxlint tsgolint.</li>
<li><strong>PR #100087</strong> fix(tooling): accept pnpm separator in web fetch benchmark. Thanks @vincentkoc.</li>
<li><strong>PR #91984</strong> fix(telegram): resolve local Bot API container file paths against trustedLocalFileRoots [AI-assisted]. Thanks @Dizesales and @AiLucasdz.</li>
<li><strong>PR #100015</strong> fix(release): block stale Codex runtime pins. Related #99951. Thanks @fuller-stack-dev and @100yenadmin.</li>
<li><strong>PR #100069</strong> test: make the local pnpm test gate green on macOS hosts. Related #100025.</li>
<li><strong>PR #87643</strong> feat: add utility models and generated session titles. Related #77165. Thanks @zhangguiping-xydt and @Juliangsm.</li>
<li><strong>PR #99121</strong> policy: cover gateway node commands. Thanks @giodl73-repo.</li>
<li><strong>PR #100024</strong> feat: refactor the Control UI architecture. Thanks @shakkernerd.</li>
<li><strong>PR #100054</strong> fix(gateway): read usage-cost cache once per agent in sessions.usage. Related #100041. Thanks @NianJiuZst and @justronin.</li>
<li><strong>PR #82895</strong> fix(slack): preserve interaction thread status. Related #82886. Thanks @WuKongAI-CMU and @tianxiaochannel-oss88.</li>
<li><strong>PR #100084</strong> fix(slack): preserve custom identity while streaming. Related #58737. Thanks @MoerAI and @FergusClare.</li>
<li><strong>PR #100089</strong> feat(gateway): terminal detach/reattach with output replay, terminal.list, terminal.text. Related #100085.</li>
<li><strong>PR #100106</strong> fix(ui): repair router refactor regressions.</li>
<li><strong>PR #99401</strong> feat(cli): render claude CLI native thinking with /reasoning gating. Thanks @Marvinthebored.</li>
<li><strong>PR #100077</strong> fix(agents): scale aggregate tool-result budget with context window and compact on pressure. Related #100042. Thanks @obviyus.</li>
<li><strong>PR #99688</strong> refactor: consolidate safe JSON parsing. Related #99665. Thanks @RomneyDa.</li>
<li><strong>PR #100061</strong> refactor(types): remove redundant local aliases. Thanks @RomneyDa.</li>
<li><strong>PR #100012</strong> fix: detect localized Windows netstat listeners. Related #99984. Thanks @qingminglong and @vincentkoc.</li>
<li><strong>PR #99746</strong> refactor(security): consolidate secret primitives. Thanks @RomneyDa.</li>
<li><strong>PR #100108</strong> test(ui): stabilize Control UI suite routing. Thanks @vincentkoc.</li>
<li><strong>PR #99763</strong> improve(ui): flatten chat tool-call rows into a scannable list. Related #99760.</li>
<li><strong>PR #99691</strong> refactor: consolidate exact keyed async queues. Related #99683. Thanks @RomneyDa.</li>
<li><strong>PR #99740</strong> refactor(plugin-sdk): consolidate tool result helpers. Thanks @RomneyDa.</li>
<li><strong>PR #94990</strong> fix(feishu): emit non-empty value schema for bitable write tools (#94547). Thanks @TwinsLee.</li>
<li><strong>PR #84335</strong> fix(slack): forward per-agent identity overlay on heartbeat and runtimeSend (#84297). Thanks @Rohang2005 and @aw-stevens.</li>
<li><strong>PR #53467</strong> feat(slack): add ignoreOtherMentions channel config. Related #89625. Thanks @hanamizuki and @SaebAmini.</li>
<li><strong>PR #100114</strong> fix(qa-channel): handle metadata-free final replies. Thanks @vincentkoc.</li>
<li><strong>PR #100047</strong> fix(gateway): truncateCloseReason drops partial UTF-8 code point instead of emitting mojibake. Related #99976. Thanks @NarahariRaghava.</li>
<li><strong>PR #100119</strong> fix(channels): expose inbound media download failures [AI-assisted]. Related #100092.</li>
<li><strong>PR #97514</strong> Doctor: expose systemd linger findings. Thanks @giodl73-repo.</li>
<li><strong>PR #100128</strong> feat(ui): adopt shared libterminal runtime. Related #100126.</li>
<li><strong>PR #95447</strong> fix(agents): use CJK-aware token estimation for tool results. Thanks @moguangyu5-design and @vincentkoc.</li>
<li><strong>PR #100123</strong> fix(tui): queue prompts while the agent is busy. Related #89059, #90012. Thanks @SebTardif and @kevinlp.</li>
<li><strong>PR #91584</strong> Fail closed when Slack mention detection is unavailable. Thanks @hiragram and @openclaw-agent.</li>
<li><strong>PR #100059</strong> [AI-assisted] fix(android): polish home overview layout. Thanks @IWhatsskill.</li>
<li><strong>PR #100013</strong> fix: keep subagent truncation within max length. Related #99979. Thanks @qingminglong.</li>
<li><strong>PR #100122</strong> chore: enable array fill lint rule.</li>
<li><strong>PR #100136</strong> fix(chat): hide duplicate channel delivery mirrors.</li>
<li><strong>PR #100096</strong> fix(infra): roll session warning durations across unit boundaries. Related #99978. Thanks @NarahariRaghava and @vincentkoc.</li>
<li><strong>PR #99165</strong> fix(qa-lab): bound suite runtime gateway JSON response reads. Thanks @hugenshen.</li>
<li><strong>PR #100144</strong> fix(ui): add chat transcript top spacing. Thanks @steipete-oai.</li>
<li><strong>PR #100135</strong> fix(agents): preserve spill-file pointers through elision and spill truncated web_fetch output. Related #100112. Thanks @obviyus.</li>
<li><strong>PR #99419</strong> fix(cli): include aliases in shell completion. Related #99406. Thanks @AmirF194 and @vincentkoc and @Jack-dev-ops.</li>
<li><strong>PR #99686</strong> policy: classify doctor fix recommendations. Thanks @giodl73-repo.</li>
<li><strong>PR #100117</strong> fix(tui): isolate embedded event listener failures. Thanks @cxbAsDev.</li>
<li><strong>PR #79938</strong> Warn on shared Slack Socket Mode connections. Thanks @jeffvsutherland.</li>
<li><strong>PR #100148</strong> fix(agents): queued CLI reasoning bridge + thinking token progress for claude-cli's withheld-text wire. Thanks @obviyus.</li>
<li><strong>PR #100088</strong> fix(ui): chat workspace panel leaves an empty gap when collapsed.</li>
<li><strong>PR #100143</strong> fix(status): hide healthy plugin summary.</li>
<li><strong>PR #100151</strong> fix(auto-reply): deliver model directive acknowledgements.</li>
<li><strong>PR #100060</strong> [AI-assisted] fix(android): polish Voice text truncation. Thanks @IWhatsskill.</li>
<li><strong>PR #100160</strong> fix: preserve Codex transcript ownership. Thanks @steipete-oai.</li>
<li><strong>PR #100163</strong> fix(ui): align activity error badges. Thanks @steipete-oai.</li>
<li><strong>PR #100090</strong> [AI-assisted] fix(android): prevent gateway setup button clipping. Thanks @IWhatsskill.</li>
<li><strong>PR #82253</strong> feat(slack): support per-channel replyToMode. Thanks @truiem-bot.</li>
<li><strong>PR #100159</strong> fix(whatsapp): replace expired terminal QR on refresh.</li>
<li><strong>PR #100164</strong> fix(agent): hide code mode wait progress.</li>
<li><strong>PR #100142</strong> docs: rewrite published docs grounded in current source. Related #100141.</li>
<li><strong>PR #99896</strong> fix(plugins): stage git plugin clone on target filesystem to avoid EXDEV. Related #99885. Thanks @Bartok9 and @vincentkoc and @CarelvanHeerden.</li>
<li><strong>PR #100157</strong> feat(ui): make mobile pairing easy to find. Related #100154.</li>
<li><strong>PR #100183</strong> test(docs): align rewrite guards with current wording. Thanks @vincentkoc.</li>
<li><strong>PR #100182</strong> docs: restore source-backed contract details.</li>
<li><strong>PR #100186</strong> docs: align source contract wording.</li>
<li><strong>PR #99059</strong> refactor: extract reusable AI runtime package. Related #99040.</li>
<li><strong>PR #100188</strong> fix(tui): keep local commands out of model prompts. Related #71592. Thanks @goslingmanagment.</li>
<li><strong>PR #100147</strong> fix(control-ui): declutter Settings and make Simple/Advanced switch persistent. Related #100145.</li>
<li><strong>PR #99050</strong> fix(whatsapp): serialize overlapping Web sends. Related #99049. Thanks @ooiuuii.</li>
<li><strong>PR #98850</strong> fix(google-meet): bound JSON response body reads to prevent OOM. Thanks @Pandah97.</li>
<li><strong>PR #95211</strong> test(tui): lock dunder markdown rendering. Related #90769. Thanks @zhangguiping-xydt and @wscurran.</li>
<li><strong>PR #100191</strong> fix(acp-core): keep fallback error redaction. Thanks @lin-hongkuan.</li>
<li><strong>PR #97746</strong> fix(discord): reuse stored sessionId across voice (stt-tts) turns. Related #97688. Thanks @Sanjays2402 and @karabaralex.</li>
<li><strong>PR #100199</strong> fix(ui): make tool activity rows selectable and less repetitive. Thanks @steipete-oai.</li>
<li><strong>PR #100203</strong> fix(cron): job edits no longer break CLI-backend runs by stripping the default toolsAllow marker. Thanks @obviyus.</li>
<li><strong>PR #89962</strong> fix(discord): fall back to text when voice delivery fails. Thanks @danhayman.</li>
<li><strong>PR #100214</strong> fix(macos): preserve PATH for SSH helpers.</li>
<li><strong>PR #99935</strong> feat(crestodian): conversational agent-loop onboarding across CLI, web install, and macOS app. Related #99934.</li>
<li><strong>PR #100223</strong> fix(crestodian): repair post-merge checks.</li>
<li><strong>PR #100204</strong> fix: land nine small correctness fixes. Thanks @LiLan0125 and @cxbAsDev and @lin-hongkuan and @ZOOWH and @liuhao1024 and @mikasa0818 and @Pandah97 and @harjothkhara and @sunlit-deng.</li>
<li><strong>PR #100190</strong> fix(ui): show only Standard and Fast for OpenAI speed.</li>
<li><strong>PR #100240</strong> fix(ui): hide duplicate terminal caret.</li>
<li><strong>PR #97480</strong> fix(slack): reconcile ambiguous sends before replay. Thanks @joeyfrasier.</li>
<li><strong>PR #95349</strong> fix(agents): strip system-event prefix from modelPrompt when before_prompt_build hooks add context. Related #95323. Thanks @openperf and @vincentkoc and @gorkem2020.</li>
<li><strong>PR #100179</strong> fix(ui): publish mobile setup independently.</li>
<li><strong>PR #100205</strong> fix(reply): prevent foreground delivery deadlock. Related #99061. Thanks @nathan-nazareth.</li>
<li><strong>PR #100239</strong> docs(release): carry approval through publish. Thanks @vincentkoc.</li>
<li><strong>PR #100029</strong> feat(crestodian): run CLI harnesses on the agent loop via a ring-zero MCP server.</li>
<li><strong>PR #100222</strong> feat(ios): distinguish debug app builds.</li>
<li><strong>PR #100220</strong> docs: default agent validation to remote runners.</li>
<li><strong>PR #100243</strong> fix: stabilize OpenClawKit contract and chat tests.</li>
<li><strong>PR #99806</strong> fix(subagents): killed subagent runs stay running in the task list. Thanks @masatohoshino.</li>
<li><strong>PR #100249</strong> fix(build): restore package artifact declarations. Thanks @vincentkoc.</li>
<li><strong>PR #100252</strong> fix(ui): hide idle composer scrollbar.</li>
<li><strong>PR #99864</strong> fix(compaction): avoid cached usage overcount. Related #99843. Thanks @LZY3538 and @jrex-jooni.</li>
<li><strong>PR #100256</strong> fix(ui): center terminal new-session button.</li>
<li><strong>PR #100259</strong> fix(ios): remove debug icon outer rim.</li>
<li><strong>PR #100125</strong> fix: DashScope and Moonshot endpoints misclassified as custom when the provider plugin is not installed.</li>
<li><strong>PR #100253</strong> docs(maint): raise PR close batch limit.</li>
<li><strong>PR #100251</strong> fix(tui): keep skill approvals in the terminal. Related #100250. Thanks @vincentkoc.</li>
<li><strong>PR #100206</strong> chore(ci): fail CI when gateway events go unhandled by the mobile apps. Related #100198.</li>
<li><strong>PR #100200</strong> chore(android): add deterministic chat streaming replay test harness.</li>
<li><strong>PR #99865</strong> fix(android): default manual TLS port to 18789 except Tailscale hosts. Thanks @ly85206559 and @cursoragent.</li>
<li><strong>PR #100127</strong> fix(qqbot): channel status keeps reporting connected after the gateway websocket dies. Thanks @masatohoshino and @vincentkoc.</li>
<li><strong>PR #100046</strong> fix(imessage): false group drop-all startup warning when groupAllowFrom is set without groups.</li>
<li><strong>PR #100242</strong> feat(scripts): serialize pr prepare gates and add remote Testbox test gate. Related #100226.</li>
<li><strong>PR #100210</strong> chore: sync canonical autoreview skill.</li>
<li><strong>PR #100263</strong> fix(voice-call): share webhook replay tracking. Thanks @xialonglee.</li>
<li><strong>PR #100258</strong> fix: harden small runtime and installer edge cases. Thanks @UditDewan and @cxbAsDev and @Simon-XYDT and @sunlit-deng and @mushuiyu886 and @connermo and @Gfaerny and @ly85206559 and @harjothkhara.</li>
<li><strong>PR #100244</strong> fix(core): keep backend truncation UTF-16 safe. Thanks @xialonglee and @vincentkoc and @ZengWen-DT.</li>
<li><strong>PR #78511</strong> fix(gateway): stop terminal WhatsApp restart loops. Related #78419. Thanks @openperf and @rutherlesdev.</li>
<li><strong>PR #89585</strong> docs: document replay history normalization contract.</li>
<li><strong>PR #87695</strong> fix(types): unblock changed gate checks. Thanks @vincentkoc.</li>
<li><strong>PR #89558</strong> docs: document embedded compaction context contracts.</li>
<li><strong>PR #100328</strong> fix(ios): own gateway setup deep-link delivery.</li>
<li><strong>PR #100208</strong> fix(ui): mobile-optimize gateway dashboard login gate.</li>
<li><strong>PR #100260</strong> fix(google): normalize Live function declarations.</li>
<li><strong>PR #100261</strong> fix(voice-call): normalize mapped proxy addresses. Related #86525. Thanks @rohitjavvadi.</li>
<li><strong>PR #100255</strong> fix(voice-call): auto-respond to webhook transcripts. Related #79118. Thanks @dvy.</li>
<li><strong>PR #100264</strong> feat(ui): show context usage details.</li>
<li><strong>PR #80642</strong> fix(whatsapp): bound reconnect catch-up replies. Thanks @VishalJ99.</li>
<li><strong>PR #100283</strong> feat(ios): add Apple Watch voice turns. Related #100224.</li>
<li><strong>PR #100209</strong> fix(models): resolve provider-qualified aliases. Related #75163. Thanks @sahilsatralkar and @david-r-jones.</li>
<li><strong>PR #94879</strong> fix(whatsapp): preserve bot-authored quote replies. Related #91445. Thanks @Bartok9 and @seikosantana.</li>
<li><strong>PR #100241</strong> fix(tui): run new sessions through lifecycle hooks. Related #49918. Thanks @caopulan and @LonExplorer-coder.</li>
<li><strong>PR #99070</strong> fix(whatsapp): restore malformed credentials from backup. Thanks @LeonidasLux.</li>
<li><strong>PR #91276</strong> fix(pre-commit): quote Python dependency range. Thanks @deepujain.</li>
<li><strong>PR #96002</strong> fix(gateway): keep local CLI shared auth off device scopes. Related #95997. Thanks @vincentkoc.</li>
<li><strong>PR #100318</strong> fix(ui): simplify grouped tool activity.</li>
<li><strong>PR #100288</strong> feat: verify AI access during macOS onboarding before the first chat. Related #100286.</li>
<li><strong>PR #83000</strong> fix(tui): render delta-only assistant streams. Related #82988. Thanks @flashosophy.</li>
<li><strong>PR #88384</strong> fix(plugins): keep openclaw chunks native in jiti. Related #85057. Thanks @vincentkoc and @ScientificProgrammer.</li>
<li><strong>PR #99928</strong> fix(outbound): report honest message delivery status. Thanks @masatohoshino.</li>
<li><strong>PR #100346</strong> docs(changelog): record WhatsApp delivery fixes.</li>
<li><strong>PR #100344</strong> fix(plugins): preserve jiti native module config.</li>
<li><strong>PR #76235</strong> [codex] Fix doctor completion cache plugin loading.</li>
<li><strong>PR #100317</strong> fix(pairing): advertise reachable Tailnet routes. Related #100280.</li>
<li><strong>PR #100266</strong> fix(ui): clear session labels across subscribed clients.</li>
<li><strong>PR #89619</strong> fix(agents): wrap bundle MCP schema setup errors. Thanks @vincentkoc.</li>
<li><strong>PR #100356</strong> fix: remove sidebar usage quota. Thanks @shakkernerd.</li>
<li><strong>PR #99690</strong> policy: repair automatic narrowing findings. Thanks @giodl73-repo.</li>
<li><strong>PR #76245</strong> [codex] Fallback when Windows gateway task exits early.</li>
<li><strong>PR #91002</strong> fix(tui): surface safe tool-validation abort diagnostics. Related #90982. Thanks @wsyjh8 and @taerlandsen.</li>
<li><strong>PR #100355</strong> test(ios): import pairing protocol model.</li>
<li><strong>PR #100332</strong> fix(ci): bound hosted gate workflow pagination.</li>
<li><strong>PR #100262</strong> feat(control-ui): session grouping with drag & drop and channel categorization.</li>
<li><strong>PR #100372</strong> fix(ios): persist queued Watch replies. Thanks @NianJiuZst.</li>
<li><strong>PR #100093</strong> Doctor: expose write-config blocker findings. Thanks @giodl73-repo.</li>
<li><strong>PR #100278</strong> fix(ci): catch native-only mobile protocol drift. Related #100198.</li>
<li><strong>PR #99954</strong> feat(clickclack): publish durable agent activity rows (commentary + tool). Thanks @ragesaq.</li>
<li><strong>PR #100370</strong> fix(ios): avoid inactive Voice Wake audio startup.</li>
<li><strong>PR #100221</strong> fix(test): unit-fast tests inherit live host config.</li>
<li><strong>PR #100340</strong> fix(tui): suppress unhandled rejection from editor submit handlers. Thanks @cxbAsDev.</li>
<li><strong>PR #100105</strong> docs: tailor imsg skill for OpenClaw agents. Thanks @omarshahine.</li>
<li><strong>PR #155</strong> docs: clarify personal vs private in README. Related #125. Thanks @mbelinky and @omarshahine and @olinorwell.</li>
<li><strong>PR #100276</strong> feat(ui): scroll truncated sidebar session names on hover.</li>
<li><strong>PR #100391</strong> fix(ui): reveal message context on timestamp hover. Thanks @steipete-oai.</li>
<li><strong>PR #100379</strong> feat(ui): show provider costs in context popover.</li>
<li><strong>PR #100398</strong> docs: explain remote Android screen mirroring. Related #100396.</li>
<li><strong>PR #100019</strong> improve: keep isolated tests under one second. Related #100018.</li>
<li><strong>PR #100399</strong> fix: land ten small reliability fixes. Related #98650. Thanks @cxbAsDev and @snotty and @lin-hongkuan and @849261680 and @qingminglong and @anyech and @masatohoshino and @Simon-XYDT and @xialonglee and @nankingjing and @609NFT.</li>
<li><strong>PR #100207</strong> feat(chat-ui): syntax-highlighted code blocks and native tables in chat markdown.</li>
<li><strong>PR #99930</strong> feat(logbook): automatic work journal plugin with Control UI timeline tab. Related #99867.</li>
<li><strong>PR #99797</strong> fix(voice-call): resolve completed calls from the persisted store on status misses. Related #96586. Thanks @Darren2030 and @NiTeCoMM-code.</li>
<li><strong>PR #100418</strong> fix(gateway): clarify URL override auth recovery. Thanks @gmays.</li>
<li><strong>PR #93636</strong> fix(infra): tolerate deleted cwd across startup, PATH, home-dir, and TUI [AI-assisted]. Related #73676. Thanks @ml12580 and @oldsix-cell.</li>
<li><strong>PR #100336</strong> fix(gateway): preserve non-text MCP content blocks through loopback normalizer. Related #100329. Thanks @tzy-17 and @OpenClawKobian99.</li>
<li><strong>PR #96572</strong> fix(irc): chunk PRIVMSG on UTF-16 boundary to avoid lone surrogates. Thanks @WeeLi-009.</li>
<li><strong>PR #100437</strong> fix(test): bound local full-suite RAM. Related #100429.</li>
<li><strong>PR #100201</strong> chore(ios): add deterministic streaming replay test harness for the shared chat pipeline.</li>
<li><strong>PR #100384</strong> feat(android): restore in-flight runs after reconnect.</li>
<li><strong>PR #100277</strong> fix(ios): restore in-flight runs after reconnect.</li>
<li><strong>PR #100337</strong> fix(agents): surface real plugin approval rejection reason to agent. Related #100212. Thanks @tzy-17 and @pallaoro.</li>
<li><strong>PR #99572</strong> fix(ios): defer QR pairing after scanner dismissal. Related #99571. Thanks @PollyBot13.</li>
<li><strong>PR #99304</strong> fix: surface terminal agent run failures. Thanks @moeedahmed.</li>
<li><strong>PR #100295</strong> fix(ui): render direct tool-result image blocks inline in chat (#50779). Thanks @lzyyzznl and @Pandah97 and @rquinones84.</li>
<li><strong>PR #100441</strong> docs(changelog): record five landed fixes.</li>
<li><strong>PR #98699</strong> fix(cron): preserve delivery thread id type across SQLite round-trip. Thanks @yetval.</li>
<li><strong>PR #100420</strong> test: stabilize load-sensitive test families that break gates under parallel load.</li>
<li><strong>PR #96178</strong> fix(browser): resolve act targetId aliases before mismatch check. Related #96176. Thanks @ZengWen-DT and @don068589.</li>
<li><strong>PR #86285</strong> fix(voice-call): avoid OpenAI realtime double greeting. Related #85846. Thanks @giodl73-repo and @jnikolaidis.</li>
<li><strong>PR #100227</strong> feat(android): read-only offline cache for chat sessions and transcripts.</li>
<li><strong>PR #100453</strong> Simplify Talk controls and move advanced defaults to Settings. Thanks @steipete-oai.</li>
<li><strong>PR #100416</strong> feat(ios): haptic feedback for chat send, completion, and failure.</li>
<li><strong>PR #100290</strong> feat(android): durable offline command outbox for chat sends.</li>
<li><strong>PR #100107</strong> Preserve provider settings during onboarding updates. Thanks @frank-beans.</li>
<li><strong>PR #100296</strong> feat(ui): declutter the Control UI sidebar with customizable pinned nav and a More section. Related #100287.</li>
<li><strong>PR #100389</strong> fix: heartbeat survives transient filesystem read races. Related #99994. Thanks @ogarciarevett and @markr9805.</li>
<li><strong>PR #100330</strong> fix(agents): prevent ReDoS in MCP glob-to-regex wildcard matching. Thanks @lsr911.</li>
<li><strong>PR #90969</strong> [codex] fix discord missing voice state handling. Thanks @asock.</li>
<li><strong>PR #99138</strong> fix(irc): long non-ASCII messages are silently truncated at the 512-byte line limit. Thanks @yetval.</li>
<li><strong>PR #100417</strong> feat(ios): export chat transcripts as Markdown via the share sheet.</li>
<li><strong>PR #100440</strong> fix: harden subprocess, maintenance, and output paths. Thanks @cxbAsDev and @wendy-chsy and @tzy-17 and @nankingjing and @NianJiuZst.</li>
<li><strong>PR #100456</strong> fix(auto-reply): surface empty interactive completions. Related #99712. Thanks @mushuiyu886 and @grox2012.</li>
<li><strong>PR #100464</strong> docs: credit empty-reply fix contributor.</li>
<li><strong>PR #89175</strong> fix(realtime): filter malformed provider tool names. Thanks @vincentkoc.</li>
<li><strong>PR #100459</strong> fix(ci): install release packaging dependencies. Thanks @vincentkoc.</li>
<li><strong>PR #91519</strong> feat(qa-lab): add Codex Slack approval scenarios. Thanks @kevinslin.</li>
<li><strong>PR #100446</strong> fix(imessage): plain-send fallback for threaded replies + db-scoped recovery cursor (#99638). Thanks @omarshahine and @brianbeals.</li>
<li><strong>PR #100382</strong> fix(android): stabilize shell navigation layout. Thanks @IWhatsskill.</li>
<li><strong>PR #98394</strong> fix: ignore stale approval resolve errors. Related #98392. Thanks @haruaiclone-droid.</li>
<li><strong>PR #87530</strong> fix(discord): isolate voice connections and close auto-join race. Thanks @geekhuashan.</li>
<li><strong>PR #100462</strong> fix(slack): prefer native status by default. Thanks @steipete-oai.</li>
<li><strong>PR #100473</strong> docs(changelog): credit voice fixes.</li>
<li><strong>PR #100469</strong> fix(release): package legacy candidates without AI workspace. Thanks @vincentkoc.</li>
<li><strong>PR #100445</strong> feat(chat-ui): redesign composer bottom bar with split Talk control and reasoning-effort chip.</li>
<li><strong>PR #100463</strong> fix(macos): reduce idle CPU wakeups. Related #100451.</li>
<li><strong>PR #100432</strong> feat(ui): add comparative cost analysis. Related #100405.</li>
<li><strong>PR #100484</strong> fix(codex): ignore missing mirrored session history. Thanks @vincentkoc and @litang9.</li>
<li><strong>PR #88881</strong> fix(agents): trim media tools in lean mode. Thanks @vincentkoc.</li>
<li><strong>PR #100488</strong> fix(macos): dashboard window keeps a dead SSH tunnel port after tunnel restart. Related #100476.</li>
<li><strong>PR #100483</strong> fix: land ten small reliability fixes. Related #100423. Thanks @aniruddhaadak80 and @NianJiuZst and @morluto and @ZengWen-DT and @cxbAsDev and @zenglingbiao and @xialonglee and @jincheng-xydt and @Pandah97 and @versatagent.</li>
<li><strong>PR #99450</strong> fix(openai): bound realtime voice websocket payload at 16 MiB. Thanks @sunlit-deng.</li>
<li><strong>PR #100375</strong> fix(slack): react action rejects emoji glyphs; member-info userId affordance unclear. Thanks @gorkem2020.</li>
<li><strong>PR #100448</strong> feat: publish plugins with extended-stable releases. Thanks @kevinslin.</li>
<li><strong>PR #100466</strong> fix(ios): simplify development app name.</li>
<li><strong>PR #100217</strong> feat(android): syntax-highlighted code blocks in chat.</li>
<li><strong>PR #100495</strong> docs(changelog): stage remote browser reliability fix.</li>
<li><strong>PR #100487</strong> fix(diffs): share SSR preloads and repair language-pack hydration.</li>
<li><strong>PR #100497</strong> test(macos): remove stale Crestodian onboarding test. Thanks @steipete-oai.</li>
<li><strong>PR #98143</strong> fix(agents): bound body-less MCP HTTP text responses. Related #97521. Thanks @Pick-cat and @wangmiao0668000666.</li>
<li><strong>PR #100049</strong> fix(android): synchronize realtime tool completions. Thanks @qingminglong.</li>
<li><strong>PR #80147</strong> fix(browser): time out remote tab enumeration. Related #58968. Thanks @HemantSudarshan and @KeaneYan.</li>
<li><strong>PR #99555</strong> fix(gateway-protocol): trim connect error detail codes in readConnectErrorDetailCode. Thanks @ly85206559 and @cursoragent.</li>
<li><strong>PR #100219</strong> feat(ios): read-only offline cache for chat sessions and transcripts.</li>
<li><strong>PR #100499</strong> fix(build): make tsdown configs self-contained. Thanks @steipete-oai.</li>
<li><strong>PR #100474</strong> refactor(auto-reply): harden empty reply delivery.</li>
<li><strong>PR #87433</strong> [codex] Honor all ack scope for room events. Related #87368. Thanks @scoootscooob and @paul-phan.</li>
<li><strong>PR #98284</strong> fix(browser): persist managed Chrome cookies across restarts. Related #96704. Thanks @TurboTheTurtle.</li>
<li><strong>PR #99023</strong> fix: avoid English audio prompt for non-English STT hints. Related #98970. Thanks @NianJiuZst and @FlyVeryHigh.</li>
<li><strong>PR #100507</strong> docs(changelog): note browser cookie persistence.</li>
<li><strong>PR #100401</strong> fix(gateway): catch lazy import rejections in runtime event subscriptions. Thanks @cxbAsDev.</li>
<li><strong>PR #80293</strong> fix: apply thread routing to plugin actions. Thanks @artdaal.</li>
<li><strong>PR #99859</strong> fix(ios): reject loopback-prefix hosts for auth retry. Thanks @ly85206559.</li>
<li><strong>PR #100386</strong> feat(ui): make the sidebar session-first and minimal.</li>
<li><strong>PR #99593</strong> fix(skills): apply command description limits per channel. Thanks @Pick-cat.</li>
<li><strong>PR #100517</strong> test(macos): deflake browser proxy gate tests via injectable browser control.</li>
<li><strong>PR #100516</strong> fix(slack): avoid repeated thread root media. Related #99886. Thanks @redasadki.</li>
<li><strong>PR #90450</strong> fix(agents): preserve streamed assistant text when Claude CLI result event is empty. Thanks @totobusnello.</li>
<li><strong>PR #100467</strong> fix(channels): normalize phone identities with stray plus signs. Thanks @morluto.</li>
<li><strong>PR #99961</strong> fix(bedrock): bound Mantle model discovery fetches. Thanks @zhangguiping-xydt.</li>
<li><strong>PR #100454</strong> fix(android): harden offline cache lifecycle.</li>
<li><strong>PR #100514</strong> fix(ui): preserve autonomous tool failures. Related #97849. Thanks @qingminglong and @yetval.</li>
<li><strong>PR #100526</strong> fix(ui): align Skills filters. Related #99990. Thanks @evan-YM.</li>
<li><strong>PR #99124</strong> fix #98107: Gateway regenerates service-env file on every restart, wiping Telegram bot tokens. Thanks @mushuiyu886 and @1Wanker.</li>
<li><strong>PR #100528</strong> fix(ui): remove redundant file-preview Escape hint. Related #99027. Thanks @xianshishan.</li>
<li><strong>PR #89416</strong> fix(browser): downloads complete over CDP connections. Related #48045. Thanks @zhangguiping-xydt and @roinou532.</li>
<li><strong>PR #100532</strong> docs(changelog): note browser attachment downloads. Related #48045. Thanks @roinou532.</li>
<li><strong>PR #100527</strong> fix(ui): bind stale run state to run identity. Related #88033. Thanks @tiffanychum and @davidstoll.</li>
<li><strong>PR #94015</strong> fix(voice-call): deliver early TTS via onEarlyText before compaction wait. Related #79521. Thanks @xialonglee and @donkeykong91.</li>
<li><strong>PR #99965</strong> fix(telegram): show typing for accepted topic messages. Thanks @moeedahmed.</li>
<li><strong>PR #100533</strong> docs(changelog): credit Control UI fixes.</li>
<li><strong>PR #100490</strong> fix(agents): preserve media side merges during prompt release.</li>
<li><strong>PR #98868</strong> feat(ios): refresh onboarding setup flow. Thanks @thats2easyyy.</li>
<li><strong>PR #96917</strong> fix(anthropic): keep OAuth callback on loopback. Related #96485. Thanks @xialonglee and @riazrahaman.</li>
<li><strong>PR #100489</strong> fix(macos): orphaned SSH tunnels from crashed app instances keep running and squat the preferred local port. Related #100477.</li>
<li><strong>PR #100479</strong> fix(control-ui): keep the dashboard mounted with a reconnect banner on gateway drops. Related #100475.</li>
<li><strong>PR #98262</strong> [codex] Fail closed pair slash command routing. Related #98239. Thanks @brokemac79.</li>
<li><strong>PR #99564</strong> fix(agents): prevent malformed HTML entities from breaking tool calls. Thanks @mikasa0818.</li>
<li><strong>PR #100536</strong> fix(agents): skip tool prep for toolless models. Thanks @vincentkoc.</li>
<li><strong>PR #100545</strong> docs(changelog): credit landed reliability fixes.</li>
<li><strong>PR #100505</strong> fix(gateway): advertise exec approval node commands. Related #57775. Thanks @vincentkoc and @RTKOP.</li>
<li><strong>PR #100512</strong> fix(ios): keep While Using selected after approval.</li>
<li><strong>PR #100434</strong> feat(ui): preview GitHub issues and pull requests on hover. Related #100412.</li>
<li><strong>PR #97733</strong> feat: add channel pairing request hook. Thanks @clawSean and @omarshahine.</li>
<li><strong>PR #100482</strong> fix(ollama): fall back when native streams end early. Related #100460. Thanks @TurboTheTurtle and @8kfcf95jvp-oss.</li>
<li><strong>PR #100555</strong> docs(changelog): add GitHub preview entry.</li>
<li><strong>PR #100376</strong> fix(tlon): bound urbit scry JSON response reads. Thanks @hugenshen.</li>
<li><strong>PR #100561</strong> docs(changelog): note Apple chat run recovery.</li>
<li><strong>PR #100363</strong> fix(android): polish gateway settings layout. Thanks @IWhatsskill.</li>
<li><strong>PR #100562</strong> docs(changelog): credit recent contributor fixes.</li>
<li><strong>PR #100480</strong> feat(cron): declarative jobs with owner attribution and richer status.</li>
<li><strong>PR #100551</strong> fix(android): preserve chat sends across reconnect recovery. Related #100197.</li>
<li><strong>PR #100366</strong> improve(auto-reply): render chat history since last reply as per-message prose. Thanks @gorkem2020.</li>
<li><strong>PR #93307</strong> fix(browser): notify agent when click triggers download. Related #93250. Thanks @sunlit-deng and @scorpiord.</li>
<li><strong>PR #100560</strong> fix(agents): run bootstrap ritual on Claude CLI. Thanks @bill-starfoundry and @kruegerb and @vincentkoc.</li>
<li><strong>PR #100575</strong> docs(changelog): note browser action downloads.</li>
<li><strong>PR #100478</strong> feat(gateway): add system.info RPC and Gateway Host card in Settings. Related #100465.</li>
<li><strong>PR #100374</strong> fix(tlon): bound external image upload reads. Thanks @hugenshen.</li>
<li><strong>PR #100520</strong> feat: show auto-detected provider plans and billing. Related #100494.</li>