nextclaw 0.6.1 → 0.6.2

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.1",
3
+ "version": "0.6.2",
4
4
  "description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -38,8 +38,9 @@
38
38
  "dependencies": {
39
39
  "chokidar": "^3.6.0",
40
40
  "commander": "^12.1.0",
41
- "@nextclaw/core": "^0.6.1",
42
- "@nextclaw/server": "^0.4.1"
41
+ "@nextclaw/core": "^0.6.2",
42
+ "@nextclaw/server": "^0.4.1",
43
+ "@nextclaw/openclaw-compat": "^0.1.5"
43
44
  },
44
45
  "devDependencies": {
45
46
  "@types/node": "^20.17.6",
@@ -137,6 +137,7 @@ When the gateway is already running, config changes from the UI or `nextclaw con
137
137
  Restart is still required for:
138
138
 
139
139
  - UI bind port (`--port` / `--ui-port`)
140
+ - `plugins.*`
140
141
 
141
142
  To confirm hot reload succeeded, check gateway console logs or `${NEXTCLAW_HOME:-~/.nextclaw}/logs/service.log` for messages like `Config reload: ... applied.`
142
143
 
@@ -196,9 +197,17 @@ Created under the workspace:
196
197
  | `nextclaw init` | Initialize workspace and template files |
197
198
  | `nextclaw init --force` | Re-run init and overwrite templates |
198
199
  | `nextclaw update` | Self-update the CLI |
200
+ | `nextclaw plugins list` | List discovered OpenClaw-compatible plugins |
201
+ | `nextclaw plugins info <id>` | Show plugin details |
202
+ | `nextclaw plugins install <path-or-spec>` | Install plugin from local path/archive or npm spec |
203
+ | `nextclaw plugins uninstall <id>` | Uninstall plugin (with optional `--dry-run`) |
204
+ | `nextclaw plugins enable <id>` | Enable plugin in config |
205
+ | `nextclaw plugins disable <id>` | Disable plugin in config |
206
+ | `nextclaw plugins doctor` | Diagnose plugin loading issues |
199
207
  | `nextclaw channels status` | Show enabled channels and status |
200
208
  | `nextclaw doctor` | Run runtime diagnostics (`--json`, `--verbose`, `--fix`) |
201
209
  | `nextclaw channels login` | Open QR login for supported channels |
210
+ | `nextclaw channels add --channel <id> ...` | Configure plugin channel via setup adapter |
202
211
  | `nextclaw cron list` | List scheduled jobs |
203
212
  | `nextclaw cron add ...` | Add a cron job (see [Cron](#cron--heartbeat)) |
204
213
  | `nextclaw cron remove <jobId>` | Remove a job |
@@ -225,6 +234,14 @@ Status/diagnostics tips:
225
234
  - `nextclaw status --fix` safely clears stale service state if PID is dead.
226
235
  - `nextclaw doctor` runs additional checks (state coherence, health, port availability, provider readiness).
227
236
 
237
+ OpenClaw-compatible plugin discovery paths:
238
+
239
+ - `${NEXTCLAW_HOME:-~/.nextclaw}/extensions`
240
+ - `<workspace>/.nextclaw/extensions`
241
+ - `plugins.load.paths` entries in config
242
+
243
+ Legacy OpenClaw directories are not scanned by default (`~/.openclaw/extensions`, `<workspace>/.openclaw/extensions`).
244
+
228
245
  ---
229
246
 
230
247
  ## Self-update