@nextclaw/ui 0.12.20-beta.6 → 0.12.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/CHANGELOG.md +322 -0
  2. package/dist/assets/api-lwyw9j7i.js +15 -0
  3. package/dist/assets/{app-manager-provider-BZr5VxCe.js → app-manager-provider-C0ONQxUg.js} +1 -1
  4. package/dist/assets/{app-navigation.config-BjIj_FLm.js → app-navigation.config-DgiR0c5_.js} +1 -1
  5. package/dist/assets/{channels-list-page-L6FFtRYn.js → channels-list-page-Dl839n02.js} +1 -1
  6. package/dist/assets/{chat-ZQIVJChB.js → chat-DwUf7AKR.js} +36 -36
  7. package/dist/assets/chat-page-B-FvPmA7.js +1 -0
  8. package/dist/assets/{desktop-update-config-AXzb7OEa.js → desktop-update-config-D5g_gPak.js} +1 -1
  9. package/dist/assets/{dialog-DgybjpeU.js → dialog-CdtCU2xX.js} +1 -1
  10. package/dist/assets/{dist-CxcPOISF.js → dist-CuqvE--P.js} +1 -1
  11. package/dist/assets/{es2015-BVRlEE06.js → es2015-yYU5Ad5w.js} +1 -1
  12. package/dist/assets/{index-B7RsQ-ne.js → index-Doxyk7L2.js} +2 -2
  13. package/dist/assets/marketplace-page-BRHkZaO5.js +1 -0
  14. package/dist/assets/{marketplace-page-ClRW-W3g.js → marketplace-page-CawcdL6Y.js} +1 -1
  15. package/dist/assets/mcp-marketplace-page-CL7BF4dD.js +1 -0
  16. package/dist/assets/{mcp-marketplace-page-DtngnIi0.js → mcp-marketplace-page-DEGfJ_70.js} +1 -1
  17. package/dist/assets/{model-config-D_y8F0j6.js → model-config-r-1RPSrZ.js} +1 -1
  18. package/dist/assets/{notice-card-uzwjFyML.js → notice-card-BPtCVEKW.js} +1 -1
  19. package/dist/assets/{popover-C8tMB7tR.js → popover-jbfQhYQh.js} +1 -1
  20. package/dist/assets/{provider-scoped-model-input-ORZutTDv.js → provider-scoped-model-input-gdk2lmRi.js} +1 -1
  21. package/dist/assets/{providers-list-DSc3d8me.js → providers-list-DpISIr3M.js} +1 -1
  22. package/dist/assets/remote-BnRNqMlb.js +1 -0
  23. package/dist/assets/{runtime-config-page-B4uSax1I.js → runtime-config-page-DQ8YY8Lc.js} +1 -1
  24. package/dist/assets/{search-config-CaqqlsdW.js → search-config-BWqz8nqY.js} +1 -1
  25. package/dist/assets/{secrets-config-llf5ROde.js → secrets-config-CjzSNg0Y.js} +1 -1
  26. package/dist/assets/{select-uO-zhYsH.js → select-Cw5Zkb1w.js} +1 -1
  27. package/dist/assets/{sessions-config-page-BqOXte9x.js → sessions-config-page-beoDPtII.js} +2 -2
  28. package/dist/assets/{setting-row-BIiXR4hx.js → setting-row-Cjl2d40s.js} +1 -1
  29. package/dist/assets/{tag-chip-DVbgpsYW.js → tag-chip-CoWHxYJj.js} +1 -1
  30. package/dist/assets/{theme-provider-BU77FNSB.js → theme-provider-B5XReW_-.js} +1 -1
  31. package/dist/assets/{tooltip-CvAtG-kT.js → tooltip-GYzH-Hfq.js} +1 -1
  32. package/dist/assets/{use-config-D2QgG7qc.js → use-config-BhJHD3-G.js} +1 -1
  33. package/dist/assets/{use-confirm-dialog-BBClFV8E.js → use-confirm-dialog-Bqgy3Gi-.js} +1 -1
  34. package/dist/assets/{use-infinite-scroll-loader-CWzpUecQ.js → use-infinite-scroll-loader-BfexitoF.js} +1 -1
  35. package/dist/assets/{use-viewport-layout-C6EN0_eq.js → use-viewport-layout-D33zVbr5.js} +1 -1
  36. package/dist/index.html +15 -15
  37. package/dist/sw.js +4 -7
  38. package/package.json +9 -9
  39. package/public/sw.js +4 -7
  40. package/src/app/hooks/use-app-event-consumers.ts +1 -1
  41. package/src/features/agents/components/agents-page.test.tsx +34 -19
  42. package/src/features/agents/components/agents-page.tsx +6 -18
  43. package/src/features/channels/components/config/channel-form.tsx +6 -2
  44. package/src/features/chat/index.ts +1 -1
  45. package/src/features/chat/managers/chat-session-list.manager.test.ts +24 -0
  46. package/src/features/chat/managers/chat-session-list.manager.ts +7 -0
  47. package/src/features/pwa/managers/pwa-service-worker-cache.manager.test.ts +16 -0
  48. package/src/features/system-status/components/desktop-update-config.tsx +1 -1
  49. package/src/features/system-status/managers/runtime-update.manager.ts +1 -3
  50. package/src/features/system-status/stores/runtime-update.store.ts +1 -1
  51. package/src/platforms/desktop/types/desktop-update.types.ts +1 -1
  52. package/src/shared/components/common/brand-header.tsx +1 -1
  53. package/src/shared/lib/api/README.md +4 -0
  54. package/src/shared/lib/api/index.ts +12 -12
  55. package/src/shared/lib/api/{services/client.service.ts → managers/client.manager.ts} +2 -2
  56. package/src/shared/lib/api/ncp-session.test.ts +3 -3
  57. package/src/shared/lib/api/{services/runtime-update.service.ts → runtime-update.utils.ts} +2 -2
  58. package/src/shared/lib/api/{services/agents.service.ts → utils/agents.utils.ts} +1 -1
  59. package/src/shared/lib/api/{services/channel-auth.service.ts → utils/channel-auth.utils.ts} +1 -1
  60. package/src/shared/lib/api/{services/config.service.ts → utils/config.utils.ts} +1 -1
  61. package/src/shared/lib/api/{services/marketplace.service.ts → utils/marketplace.utils.ts} +1 -1
  62. package/src/shared/lib/api/{services/mcp-marketplace.service.ts → utils/mcp-marketplace.utils.ts} +1 -1
  63. package/src/shared/lib/api/{services/ncp-attachments.service.ts → utils/ncp-attachments.utils.ts} +1 -1
  64. package/src/shared/lib/api/{services/ncp-session.service.ts → utils/ncp-session.utils.ts} +1 -1
  65. package/src/shared/lib/api/{services/remote.service.ts → utils/remote.utils.ts} +1 -1
  66. package/src/shared/lib/api/{services/runtime-control.service.ts → utils/runtime-control.utils.ts} +1 -1
  67. package/src/shared/lib/api/{services/server-path.service.ts → utils/server-path.utils.ts} +1 -1
  68. package/src/shared/lib/transport/transport.types.ts +1 -1
  69. package/tsconfig.json +2 -3
  70. package/vite.config.ts +1 -2
  71. package/vitest.config.ts +1 -2
  72. package/dist/assets/api-Dai6UR3J.js +0 -15
  73. package/dist/assets/chat-page-CR1yI96r.js +0 -1
  74. package/dist/assets/marketplace-page-Bj55-6F2.js +0 -1
  75. package/dist/assets/mcp-marketplace-page-_Wu2VnHy.js +0 -1
  76. package/dist/assets/remote-rWiu3cys.js +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,306 @@
1
1
  # @nextclaw/ui
2
2
 
3
+ ## 0.12.21
4
+
5
+ ### Patch Changes
6
+
7
+ - Stable minor release for the NextClaw npm package, with patch releases for the workspace dependency closure.
8
+
9
+ Packages:
10
+
11
+ - @nextclaw/agent-chat
12
+ - @nextclaw/agent-chat-ui
13
+ - @nextclaw/app-runtime
14
+ - @nextclaw/app-sdk
15
+ - @nextclaw/channel-extension-weixin
16
+ - @nextclaw/channel-plugin-dingtalk
17
+ - @nextclaw/channel-plugin-discord
18
+ - @nextclaw/channel-plugin-email
19
+ - @nextclaw/channel-plugin-feishu
20
+ - @nextclaw/channel-plugin-mochat
21
+ - @nextclaw/channel-plugin-qq
22
+ - @nextclaw/channel-plugin-slack
23
+ - @nextclaw/channel-plugin-telegram
24
+ - @nextclaw/channel-plugin-wecom
25
+ - @nextclaw/channel-plugin-whatsapp
26
+ - @nextclaw/channel-runtime
27
+ - @nextclaw/client-sdk
28
+ - @nextclaw/companion
29
+ - @nextclaw/core
30
+ - @nextclaw/extension-sdk
31
+ - @nextclaw/feishu-core
32
+ - @nextclaw/kernel
33
+ - @nextclaw/mcp
34
+ - @nextclaw/ncp
35
+ - @nextclaw/ncp-agent-runtime
36
+ - @nextclaw/ncp-http-agent-client
37
+ - @nextclaw/ncp-http-agent-server
38
+ - @nextclaw/ncp-mcp
39
+ - @nextclaw/ncp-react
40
+ - @nextclaw/ncp-react-ui
41
+ - @nextclaw/ncp-toolkit
42
+ - @nextclaw/nextclaw-hermes-acp-bridge
43
+ - @nextclaw/nextclaw-narp-runtime-claude-code-sdk
44
+ - @nextclaw/nextclaw-narp-runtime-codex-sdk
45
+ - @nextclaw/nextclaw-narp-stdio-runtime-wrapper
46
+ - @nextclaw/nextclaw-ncp-runtime-adapter-hermes-http
47
+ - @nextclaw/nextclaw-ncp-runtime-claude-code-sdk
48
+ - @nextclaw/nextclaw-ncp-runtime-codex-sdk
49
+ - @nextclaw/nextclaw-ncp-runtime-http-client
50
+ - @nextclaw/nextclaw-ncp-runtime-plugin-claude-code-sdk
51
+ - @nextclaw/nextclaw-ncp-runtime-plugin-codex-sdk
52
+ - @nextclaw/nextclaw-ncp-runtime-stdio-client
53
+ - @nextclaw/openclaw-compat
54
+ - @nextclaw/remote
55
+ - @nextclaw/runtime
56
+ - @nextclaw/server
57
+ - @nextclaw/service
58
+ - @nextclaw/shared
59
+ - @nextclaw/ui
60
+ - nextclaw
61
+
62
+ - Updated dependencies
63
+ - @nextclaw/agent-chat@0.1.12
64
+ - @nextclaw/agent-chat-ui@0.3.14
65
+ - @nextclaw/client-sdk@0.1.2
66
+ - @nextclaw/ncp@0.5.7
67
+ - @nextclaw/ncp-http-agent-client@0.3.19
68
+ - @nextclaw/ncp-react@0.4.27
69
+ - @nextclaw/server@0.12.14
70
+ - @nextclaw/shared@0.1.1
71
+
72
+ ## 0.12.20
73
+
74
+ ### Patch Changes
75
+
76
+ - 0251268: Auto-generated patch release for packages with meaningful drift after their latest version commit.
77
+
78
+ Packages:
79
+
80
+ - @nextclaw/agent-chat-ui
81
+ - @nextclaw/channel-plugin-feishu
82
+ - @nextclaw/channel-plugin-weixin
83
+ - @nextclaw/core
84
+ - @nextclaw/feishu-core
85
+ - @nextclaw/ncp
86
+ - @nextclaw/ncp-react-ui
87
+ - @nextclaw/ncp-toolkit
88
+ - @nextclaw/runtime
89
+ - @nextclaw/server
90
+ - @nextclaw/ui
91
+ - nextclaw
92
+
93
+ - 2418020: Auto-generated full public beta release batch.
94
+
95
+ Packages:
96
+
97
+ - @nextclaw/agent-chat
98
+ - @nextclaw/agent-chat-ui
99
+ - @nextclaw/app-runtime
100
+ - @nextclaw/app-sdk
101
+ - @nextclaw/channel-plugin-dingtalk
102
+ - @nextclaw/channel-plugin-discord
103
+ - @nextclaw/channel-plugin-email
104
+ - @nextclaw/channel-plugin-feishu
105
+ - @nextclaw/channel-plugin-mochat
106
+ - @nextclaw/channel-plugin-qq
107
+ - @nextclaw/channel-plugin-slack
108
+ - @nextclaw/channel-plugin-telegram
109
+ - @nextclaw/channel-plugin-wecom
110
+ - @nextclaw/channel-plugin-weixin
111
+ - @nextclaw/channel-plugin-whatsapp
112
+ - @nextclaw/channel-runtime
113
+ - @nextclaw/client-sdk
114
+ - @nextclaw/companion
115
+ - @nextclaw/core
116
+ - @nextclaw/feishu-core
117
+ - @nextclaw/kernel
118
+ - @nextclaw/mcp
119
+ - @nextclaw/ncp
120
+ - @nextclaw/ncp-agent-runtime
121
+ - @nextclaw/ncp-http-agent-client
122
+ - @nextclaw/ncp-http-agent-server
123
+ - @nextclaw/ncp-mcp
124
+ - @nextclaw/ncp-react
125
+ - @nextclaw/ncp-react-ui
126
+ - @nextclaw/ncp-toolkit
127
+ - @nextclaw/nextclaw-hermes-acp-bridge
128
+ - @nextclaw/nextclaw-ncp-runtime-adapter-hermes-http
129
+ - @nextclaw/nextclaw-ncp-runtime-claude-code-sdk
130
+ - @nextclaw/nextclaw-ncp-runtime-codex-sdk
131
+ - @nextclaw/nextclaw-ncp-runtime-http-client
132
+ - @nextclaw/nextclaw-ncp-runtime-plugin-claude-code-sdk
133
+ - @nextclaw/nextclaw-ncp-runtime-plugin-codex-sdk
134
+ - @nextclaw/nextclaw-ncp-runtime-stdio-client
135
+ - @nextclaw/openclaw-compat
136
+ - @nextclaw/remote
137
+ - @nextclaw/runtime
138
+ - @nextclaw/server
139
+ - @nextclaw/ui
140
+ - nextclaw
141
+
142
+ - a5da9d6: Auto-generated full public beta release batch.
143
+
144
+ Packages:
145
+
146
+ - @nextclaw/agent-chat
147
+ - @nextclaw/agent-chat-ui
148
+ - @nextclaw/app-runtime
149
+ - @nextclaw/app-sdk
150
+ - @nextclaw/channel-plugin-dingtalk
151
+ - @nextclaw/channel-plugin-discord
152
+ - @nextclaw/channel-plugin-email
153
+ - @nextclaw/channel-plugin-feishu
154
+ - @nextclaw/channel-plugin-mochat
155
+ - @nextclaw/channel-plugin-qq
156
+ - @nextclaw/channel-plugin-slack
157
+ - @nextclaw/channel-plugin-telegram
158
+ - @nextclaw/channel-plugin-wecom
159
+ - @nextclaw/channel-plugin-weixin
160
+ - @nextclaw/channel-plugin-whatsapp
161
+ - @nextclaw/channel-runtime
162
+ - @nextclaw/client-sdk
163
+ - @nextclaw/companion
164
+ - @nextclaw/core
165
+ - @nextclaw/feishu-core
166
+ - @nextclaw/kernel
167
+ - @nextclaw/mcp
168
+ - @nextclaw/ncp
169
+ - @nextclaw/ncp-agent-runtime
170
+ - @nextclaw/ncp-http-agent-client
171
+ - @nextclaw/ncp-http-agent-server
172
+ - @nextclaw/ncp-mcp
173
+ - @nextclaw/ncp-react
174
+ - @nextclaw/ncp-react-ui
175
+ - @nextclaw/ncp-toolkit
176
+ - @nextclaw/nextclaw-hermes-acp-bridge
177
+ - @nextclaw/nextclaw-ncp-runtime-adapter-hermes-http
178
+ - @nextclaw/nextclaw-ncp-runtime-claude-code-sdk
179
+ - @nextclaw/nextclaw-ncp-runtime-codex-sdk
180
+ - @nextclaw/nextclaw-ncp-runtime-http-client
181
+ - @nextclaw/nextclaw-ncp-runtime-plugin-claude-code-sdk
182
+ - @nextclaw/nextclaw-ncp-runtime-plugin-codex-sdk
183
+ - @nextclaw/nextclaw-ncp-runtime-stdio-client
184
+ - @nextclaw/openclaw-compat
185
+ - @nextclaw/remote
186
+ - @nextclaw/runtime
187
+ - @nextclaw/server
188
+ - @nextclaw/ui
189
+ - nextclaw
190
+
191
+ - 1600643: Auto-generated full public beta release batch.
192
+
193
+ Packages:
194
+
195
+ - @nextclaw/agent-chat
196
+ - @nextclaw/agent-chat-ui
197
+ - @nextclaw/app-runtime
198
+ - @nextclaw/app-sdk
199
+ - @nextclaw/channel-plugin-dingtalk
200
+ - @nextclaw/channel-plugin-discord
201
+ - @nextclaw/channel-plugin-email
202
+ - @nextclaw/channel-plugin-feishu
203
+ - @nextclaw/channel-plugin-mochat
204
+ - @nextclaw/channel-plugin-qq
205
+ - @nextclaw/channel-plugin-slack
206
+ - @nextclaw/channel-plugin-telegram
207
+ - @nextclaw/channel-plugin-wecom
208
+ - @nextclaw/channel-plugin-weixin
209
+ - @nextclaw/channel-plugin-whatsapp
210
+ - @nextclaw/channel-runtime
211
+ - @nextclaw/client-sdk
212
+ - @nextclaw/companion
213
+ - @nextclaw/core
214
+ - @nextclaw/feishu-core
215
+ - @nextclaw/kernel
216
+ - @nextclaw/mcp
217
+ - @nextclaw/ncp
218
+ - @nextclaw/ncp-agent-runtime
219
+ - @nextclaw/ncp-http-agent-client
220
+ - @nextclaw/ncp-http-agent-server
221
+ - @nextclaw/ncp-mcp
222
+ - @nextclaw/ncp-react
223
+ - @nextclaw/ncp-react-ui
224
+ - @nextclaw/ncp-toolkit
225
+ - @nextclaw/nextclaw-hermes-acp-bridge
226
+ - @nextclaw/nextclaw-ncp-runtime-adapter-hermes-http
227
+ - @nextclaw/nextclaw-ncp-runtime-claude-code-sdk
228
+ - @nextclaw/nextclaw-ncp-runtime-codex-sdk
229
+ - @nextclaw/nextclaw-ncp-runtime-http-client
230
+ - @nextclaw/nextclaw-ncp-runtime-plugin-claude-code-sdk
231
+ - @nextclaw/nextclaw-ncp-runtime-plugin-codex-sdk
232
+ - @nextclaw/nextclaw-ncp-runtime-stdio-client
233
+ - @nextclaw/openclaw-compat
234
+ - @nextclaw/remote
235
+ - @nextclaw/runtime
236
+ - @nextclaw/server
237
+ - @nextclaw/ui
238
+ - nextclaw
239
+
240
+ - 223037c: Auto-generated full public beta release batch.
241
+
242
+ Packages:
243
+
244
+ - @nextclaw/agent-chat
245
+ - @nextclaw/agent-chat-ui
246
+ - @nextclaw/app-runtime
247
+ - @nextclaw/app-sdk
248
+ - @nextclaw/channel-plugin-dingtalk
249
+ - @nextclaw/channel-plugin-discord
250
+ - @nextclaw/channel-plugin-email
251
+ - @nextclaw/channel-plugin-feishu
252
+ - @nextclaw/channel-plugin-mochat
253
+ - @nextclaw/channel-plugin-qq
254
+ - @nextclaw/channel-plugin-slack
255
+ - @nextclaw/channel-plugin-telegram
256
+ - @nextclaw/channel-plugin-wecom
257
+ - @nextclaw/channel-plugin-weixin
258
+ - @nextclaw/channel-plugin-whatsapp
259
+ - @nextclaw/channel-runtime
260
+ - @nextclaw/client-sdk
261
+ - @nextclaw/companion
262
+ - @nextclaw/core
263
+ - @nextclaw/feishu-core
264
+ - @nextclaw/kernel
265
+ - @nextclaw/mcp
266
+ - @nextclaw/ncp
267
+ - @nextclaw/ncp-agent-runtime
268
+ - @nextclaw/ncp-http-agent-client
269
+ - @nextclaw/ncp-http-agent-server
270
+ - @nextclaw/ncp-mcp
271
+ - @nextclaw/ncp-react
272
+ - @nextclaw/ncp-react-ui
273
+ - @nextclaw/ncp-toolkit
274
+ - @nextclaw/nextclaw-hermes-acp-bridge
275
+ - @nextclaw/nextclaw-ncp-runtime-adapter-hermes-http
276
+ - @nextclaw/nextclaw-ncp-runtime-claude-code-sdk
277
+ - @nextclaw/nextclaw-ncp-runtime-codex-sdk
278
+ - @nextclaw/nextclaw-ncp-runtime-http-client
279
+ - @nextclaw/nextclaw-ncp-runtime-plugin-claude-code-sdk
280
+ - @nextclaw/nextclaw-ncp-runtime-plugin-codex-sdk
281
+ - @nextclaw/nextclaw-ncp-runtime-stdio-client
282
+ - @nextclaw/openclaw-compat
283
+ - @nextclaw/remote
284
+ - @nextclaw/runtime
285
+ - @nextclaw/server
286
+ - @nextclaw/ui
287
+ - nextclaw
288
+
289
+ - Updated dependencies [0251268]
290
+ - Updated dependencies [a11f4fd]
291
+ - Updated dependencies [2418020]
292
+ - Updated dependencies [a5da9d6]
293
+ - Updated dependencies [1600643]
294
+ - Updated dependencies [223037c]
295
+ - @nextclaw/agent-chat-ui@0.3.13
296
+ - @nextclaw/ncp@0.5.6
297
+ - @nextclaw/server@0.12.13
298
+ - @nextclaw/agent-chat@0.1.11
299
+ - @nextclaw/client-sdk@0.1.1
300
+ - @nextclaw/kernel@0.1.2
301
+ - @nextclaw/ncp-http-agent-client@0.3.18
302
+ - @nextclaw/ncp-react@0.4.26
303
+
3
304
  ## 0.12.20-beta.6
4
305
 
5
306
  ### Patch Changes
@@ -7,6 +308,7 @@
7
308
  - Auto-generated full public beta release batch.
8
309
 
9
310
  Packages:
311
+
10
312
  - @nextclaw/agent-chat
11
313
  - @nextclaw/agent-chat-ui
12
314
  - @nextclaw/app-runtime
@@ -69,6 +371,7 @@
69
371
  - Auto-generated full public beta release batch.
70
372
 
71
373
  Packages:
374
+
72
375
  - @nextclaw/agent-chat
73
376
  - @nextclaw/agent-chat-ui
74
377
  - @nextclaw/app-runtime
@@ -131,6 +434,7 @@
131
434
  - Auto-generated full public beta release batch.
132
435
 
133
436
  Packages:
437
+
134
438
  - @nextclaw/agent-chat
135
439
  - @nextclaw/agent-chat-ui
136
440
  - @nextclaw/app-runtime
@@ -193,6 +497,7 @@
193
497
  - Auto-generated full public beta release batch.
194
498
 
195
499
  Packages:
500
+
196
501
  - @nextclaw/agent-chat
197
502
  - @nextclaw/agent-chat-ui
198
503
  - @nextclaw/app-runtime
@@ -274,6 +579,7 @@
274
579
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
275
580
 
276
581
  Packages:
582
+
277
583
  - @nextclaw/agent-chat-ui
278
584
  - @nextclaw/channel-plugin-feishu
279
585
  - @nextclaw/channel-plugin-weixin
@@ -313,6 +619,7 @@
313
619
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
314
620
 
315
621
  Packages:
622
+
316
623
  - @nextclaw/agent-chat-ui
317
624
  - @nextclaw/ui
318
625
  - nextclaw
@@ -327,6 +634,7 @@
327
634
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
328
635
 
329
636
  Packages:
637
+
330
638
  - @nextclaw/agent-chat-ui
331
639
  - @nextclaw/ui
332
640
 
@@ -340,6 +648,7 @@
340
648
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
341
649
 
342
650
  Packages:
651
+
343
652
  - @nextclaw/agent-chat-ui
344
653
  - @nextclaw/ui
345
654
  - nextclaw
@@ -360,6 +669,7 @@
360
669
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
361
670
 
362
671
  Packages:
672
+
363
673
  - @nextclaw/ui
364
674
  - nextclaw
365
675
 
@@ -370,6 +680,7 @@
370
680
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
371
681
 
372
682
  Packages:
683
+
373
684
  - @nextclaw/agent-chat-ui
374
685
  - @nextclaw/channel-plugin-dingtalk
375
686
  - @nextclaw/channel-plugin-discord
@@ -422,6 +733,7 @@
422
733
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
423
734
 
424
735
  Packages:
736
+
425
737
  - @nextclaw/agent-chat-ui
426
738
  - @nextclaw/channel-plugin-dingtalk
427
739
  - @nextclaw/channel-plugin-discord
@@ -473,6 +785,7 @@
473
785
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
474
786
 
475
787
  Packages:
788
+
476
789
  - @nextclaw/agent-chat-ui
477
790
  - @nextclaw/channel-plugin-dingtalk
478
791
  - @nextclaw/channel-plugin-discord
@@ -524,6 +837,7 @@
524
837
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
525
838
 
526
839
  Packages:
840
+
527
841
  - @nextclaw/agent-chat-ui
528
842
  - @nextclaw/channel-plugin-dingtalk
529
843
  - @nextclaw/channel-plugin-discord
@@ -559,6 +873,7 @@
559
873
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
560
874
 
561
875
  Packages:
876
+
562
877
  - @nextclaw/agent-chat
563
878
  - @nextclaw/agent-chat-ui
564
879
  - @nextclaw/channel-plugin-dingtalk
@@ -609,6 +924,7 @@
609
924
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
610
925
 
611
926
  Packages:
927
+
612
928
  - @nextclaw/agent-chat-ui
613
929
  - @nextclaw/channel-plugin-dingtalk
614
930
  - @nextclaw/channel-plugin-discord
@@ -649,6 +965,7 @@
649
965
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
650
966
 
651
967
  Packages:
968
+
652
969
  - @nextclaw/agent-chat-ui
653
970
  - @nextclaw/channel-plugin-weixin
654
971
  - @nextclaw/core
@@ -674,6 +991,7 @@
674
991
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
675
992
 
676
993
  Packages:
994
+
677
995
  - @nextclaw/agent-chat
678
996
  - @nextclaw/agent-chat-ui
679
997
  - @nextclaw/channel-plugin-dingtalk
@@ -729,6 +1047,7 @@
729
1047
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
730
1048
 
731
1049
  Packages:
1050
+
732
1051
  - @nextclaw/agent-chat
733
1052
  - @nextclaw/channel-plugin-dingtalk
734
1053
  - @nextclaw/channel-plugin-discord
@@ -767,6 +1086,7 @@
767
1086
  - Auto-generated patch release for packages with meaningful drift after their latest version commit.
768
1087
 
769
1088
  Packages:
1089
+
770
1090
  - @nextclaw/agent-chat
771
1091
  - @nextclaw/core
772
1092
  - @nextclaw/feishu-core
@@ -1283,6 +1603,7 @@
1283
1603
  - Switch skill distribution to marketplace-first flow and remove GitHub-based skill install paths.
1284
1604
 
1285
1605
  This release includes:
1606
+
1286
1607
  - skill/plugin model clean split (skill: `builtin` + `marketplace` only)
1287
1608
  - marketplace API migration from bundled JSON to D1-backed source
1288
1609
  - CLI support for marketplace skill upload/update/install
@@ -1343,6 +1664,7 @@
1343
1664
  - Unified minor release for accumulated architecture, engine, and chat UX updates.
1344
1665
 
1345
1666
  Includes:
1667
+
1346
1668
  - New pluggable engine runtime support (Codex SDK / Claude Agent SDK)
1347
1669
  - Skill-context propagation and chat interaction stability improvements
1348
1670
  - Main workspace routing and conversation UX refinements