nextclaw 0.6.29 → 0.6.31
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nextclaw",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.31",
|
|
4
4
|
"description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"chokidar": "^3.6.0",
|
|
40
40
|
"commander": "^12.1.0",
|
|
41
41
|
"@nextclaw/core": "^0.6.24",
|
|
42
|
-
"@nextclaw/server": "^0.4.
|
|
42
|
+
"@nextclaw/server": "^0.4.13",
|
|
43
43
|
"@nextclaw/openclaw-compat": "^0.1.17"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
package/templates/USAGE.md
CHANGED
|
@@ -144,6 +144,8 @@ Restart is still required for:
|
|
|
144
144
|
|
|
145
145
|
To confirm hot reload succeeded, check gateway console logs or `${NEXTCLAW_HOME:-~/.nextclaw}/logs/service.log` for messages like `Config reload: ... applied.`
|
|
146
146
|
|
|
147
|
+
UI note: **Model** page save now persists both `agents.defaults.model` and `agents.defaults.maxTokens` (refresh should keep the updated max token value).
|
|
148
|
+
|
|
147
149
|
### Multi-agent routing & session isolation (OpenClaw-aligned)
|
|
148
150
|
|
|
149
151
|
You can now configure OpenClaw-style multi-agent runtime behavior directly in the UI (**Routing & Runtime**) or in `config.json`:
|
|
@@ -333,10 +335,12 @@ For internal AI operations (same as other built-in capabilities):
|
|
|
333
335
|
NextClaw UI now provides an OpenClaw-aligned session operations panel (**Sessions** tab) with additional runtime controls:
|
|
334
336
|
|
|
335
337
|
- list sessions with search + active window filters
|
|
338
|
+
- switch grouping mode: all sessions (no grouping) or grouped by channel
|
|
336
339
|
- inspect session history (latest window)
|
|
337
340
|
- patch per-session metadata (`label`, `preferredModel`)
|
|
338
341
|
- clear one session history
|
|
339
342
|
- delete one session
|
|
343
|
+
- localized Sessions UI copy (i18n labels for the panel)
|
|
340
344
|
|
|
341
345
|
This is useful when running multi-agent routing and channel operations long term, because you can clean or retarget problematic sessions without hand-editing files.
|
|
342
346
|
|