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 +33 -0
- package/package.json +1 -1
- package/templates/USAGE.md +1 -1
- package/ui-dist/assets/index-CZnQJKDU.js +347 -0
- package/ui-dist/assets/index-CfkfeqC5.css +1 -0
- package/ui-dist/index.html +2 -2
- package/ui-dist/assets/index-BWFy0xvM.js +0 -342
- package/ui-dist/assets/index-CqQ629Sy.css +0 -1
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
package/templates/USAGE.md
CHANGED
|
@@ -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](
|
|
161
|
+
See full architecture details in [Multi-Agent Architecture](https://docs.nextclaw.io/guide/multi-agent).
|
|
162
162
|
|
|
163
163
|
Example:
|
|
164
164
|
|