nextclaw 0.6.27 → 0.6.29
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.29",
|
|
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.12",
|
|
43
43
|
"@nextclaw/openclaw-compat": "^0.1.17"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
package/templates/USAGE.md
CHANGED
|
@@ -25,6 +25,7 @@ When NextClaw AI needs to operate the product itself (status/doctor/channels/con
|
|
|
25
25
|
- [Configuration](#configuration)
|
|
26
26
|
- [Input context budget](#input-context-budget)
|
|
27
27
|
- [Multi-agent routing & session isolation](#multi-agent-routing--session-isolation-openclaw-aligned)
|
|
28
|
+
- [Session management (UI)](#session-management-ui)
|
|
28
29
|
- [Workspace](#workspace)
|
|
29
30
|
- [Commands](#commands)
|
|
30
31
|
- [Channels](#channels)
|
|
@@ -315,6 +316,10 @@ nextclaw config set agents.defaults.contextTokens 200000 --json
|
|
|
315
316
|
nextclaw config set agents.list '[{"id":"engineer","contextTokens":160000}]' --json
|
|
316
317
|
```
|
|
317
318
|
|
|
319
|
+
UI path:
|
|
320
|
+
|
|
321
|
+
- `Routing & Runtime` page can edit both default `contextTokens` and per-agent `contextTokens` overrides.
|
|
322
|
+
|
|
318
323
|
For internal AI operations (same as other built-in capabilities):
|
|
319
324
|
|
|
320
325
|
- Yes, the runtime registers the `gateway` tool (`config.get` / `config.schema` / `config.apply` / `config.patch`).
|
|
@@ -323,6 +328,20 @@ For internal AI operations (same as other built-in capabilities):
|
|
|
323
328
|
|
|
324
329
|
---
|
|
325
330
|
|
|
331
|
+
## Session management (UI)
|
|
332
|
+
|
|
333
|
+
NextClaw UI now provides an OpenClaw-aligned session operations panel (**Sessions** tab) with additional runtime controls:
|
|
334
|
+
|
|
335
|
+
- list sessions with search + active window filters
|
|
336
|
+
- inspect session history (latest window)
|
|
337
|
+
- patch per-session metadata (`label`, `preferredModel`)
|
|
338
|
+
- clear one session history
|
|
339
|
+
- delete one session
|
|
340
|
+
|
|
341
|
+
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
|
+
|
|
343
|
+
---
|
|
344
|
+
|
|
326
345
|
## Workspace
|
|
327
346
|
|
|
328
347
|
- **Default path:** `~/.nextclaw/workspace`
|