nextclaw 0.8.19 → 0.8.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.
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # nextclaw
2
+
3
+ Feature-rich, OpenClaw-compatible personal AI assistant with CLI + built-in Web UI.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm i -g nextclaw
9
+ ```
10
+
11
+ ## Quick start
12
+
13
+ ```bash
14
+ nextclaw start
15
+ ```
16
+
17
+ Then open `http://127.0.0.1:18791`.
18
+
19
+ ## Common commands
20
+
21
+ ```bash
22
+ nextclaw --version
23
+ nextclaw status
24
+ nextclaw stop
25
+ nextclaw update
26
+ ```
27
+
28
+ ## Docs
29
+
30
+ - Product docs: https://docs.nextclaw.io
31
+ - Repository: https://github.com/Peiiii/nextclaw
32
+ - Changelog: https://github.com/Peiiii/nextclaw/blob/master/packages/nextclaw/CHANGELOG.md
33
+ - Iteration logs: https://github.com/Peiiii/nextclaw/tree/master/docs/logs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextclaw",
3
- "version": "0.8.19",
3
+ "version": "0.8.21",
4
4
  "description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -158,7 +158,7 @@ You can now configure OpenClaw-style multi-agent runtime behavior directly in th
158
158
  > ⚠️ **Strict enum guard (OpenClaw-aligned):** `session.dmScope` accepts **only** these 4 values: `main`, `per-peer`, `per-channel-peer`, `per-account-channel-peer`.
159
159
  > Any other value (for example `per-account-channel-peer-agent`) is invalid and must not be written.
160
160
 
161
- See full architecture details in [Multi-Agent Architecture](guides/multi-agent-architecture.md).
161
+ See full architecture details in [Multi-Agent Architecture](https://docs.nextclaw.io/guide/multi-agent).
162
162
 
163
163
  Example:
164
164