nextclaw 0.13.4 → 0.13.5
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/dist/cli/index.js +438 -1078
- package/package.json +7 -7
- package/templates/USAGE.md +5 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nextclaw",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.5",
|
|
4
4
|
"description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -39,15 +39,15 @@
|
|
|
39
39
|
"chokidar": "^3.6.0",
|
|
40
40
|
"commander": "^12.1.0",
|
|
41
41
|
"yaml": "^2.8.1",
|
|
42
|
-
"@nextclaw/core": "0.9.
|
|
43
|
-
"@nextclaw/mcp": "0.1.
|
|
42
|
+
"@nextclaw/core": "0.9.4",
|
|
43
|
+
"@nextclaw/mcp": "0.1.5",
|
|
44
|
+
"@nextclaw/ncp-mcp": "0.1.5",
|
|
44
45
|
"@nextclaw/ncp-agent-runtime": "0.2.1",
|
|
45
46
|
"@nextclaw/ncp": "0.3.1",
|
|
46
|
-
"@nextclaw/
|
|
47
|
+
"@nextclaw/runtime": "0.2.4",
|
|
48
|
+
"@nextclaw/openclaw-compat": "0.3.9",
|
|
47
49
|
"@nextclaw/ncp-toolkit": "0.4.1",
|
|
48
|
-
"@nextclaw/
|
|
49
|
-
"@nextclaw/server": "0.10.4",
|
|
50
|
-
"@nextclaw/openclaw-compat": "0.3.8"
|
|
50
|
+
"@nextclaw/server": "0.10.5"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/node": "^20.17.6",
|
package/templates/USAGE.md
CHANGED
|
@@ -485,11 +485,7 @@ Created under the workspace:
|
|
|
485
485
|
| `nextclaw init` | Initialize workspace and template files |
|
|
486
486
|
| `nextclaw init --force` | Re-run init and overwrite templates |
|
|
487
487
|
| `nextclaw login --api-base <url>` | Login to NextClaw Platform and save the platform token locally |
|
|
488
|
-
| `nextclaw remote
|
|
489
|
-
| `nextclaw remote disable` | Disable service-managed remote access |
|
|
490
|
-
| `nextclaw remote status` | Show remote runtime/config status |
|
|
491
|
-
| `nextclaw remote doctor` | Diagnose remote readiness |
|
|
492
|
-
| `nextclaw remote connect` | Foreground debug mode: register this machine and keep the connector online |
|
|
488
|
+
| `nextclaw remote connect` | Register this machine for remote access and keep the connector online |
|
|
493
489
|
| `nextclaw update` | Self-update the CLI |
|
|
494
490
|
| `nextclaw plugins list` | List discovered OpenClaw-compatible plugins |
|
|
495
491
|
| `nextclaw plugins info <id>` | Show plugin details |
|
|
@@ -524,16 +520,10 @@ If service is already running, new UI port flags do not hot-apply; use `nextclaw
|
|
|
524
520
|
|
|
525
521
|
Remote access quick start:
|
|
526
522
|
|
|
527
|
-
1.
|
|
528
|
-
2.
|
|
529
|
-
3.
|
|
530
|
-
4.
|
|
531
|
-
5. Open the same account in NextClaw Platform, find the device under "我的设备", then click `Open`.
|
|
532
|
-
|
|
533
|
-
Notes:
|
|
534
|
-
|
|
535
|
-
- `nextclaw remote connect` is now the foreground debug path. It is useful for troubleshooting, but it is no longer the recommended daily workflow.
|
|
536
|
-
- `nextclaw status` now includes remote state summary, and `nextclaw remote doctor` focuses on remote-specific checks.
|
|
523
|
+
1. Start your local NextClaw UI: `nextclaw start` or `nextclaw serve`.
|
|
524
|
+
2. Login once on that device: `nextclaw login --api-base https://ai-gateway-api.nextclaw.io/v1`.
|
|
525
|
+
3. Keep the remote connector online: `nextclaw remote connect`.
|
|
526
|
+
4. Open the same account in NextClaw Platform, find the device under "我的设备", then click `Open`.
|
|
537
527
|
|
|
538
528
|
Status/diagnostics tips:
|
|
539
529
|
|