nextclaw 0.19.7 → 0.19.8

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.
@@ -3646,7 +3646,7 @@ registerHostServiceControls({
3646
3646
  nextclaw: runtime
3647
3647
  });
3648
3648
  program.command("agent").description("Interact with the agent directly").option("-m, --message <message>", "Message to send to the agent").option("-s, --session <session>", "Session ID", "cli:default").option("--model <model>", "Session model override for this run").option("--no-markdown", "Disable Markdown rendering").action(async (opts) => runtime.agent(opts));
3649
- program.command("update").description(`Check, download, or apply ${APP_NAME} runtime updates`).option("--check", "Only check for a runtime update", false).option("--download", "Download an available runtime update without applying it").option("--apply", "Apply the downloaded runtime update", false).option("--channel <channel>", "Update channel (stable or beta)").option("--manifest-url <url>", "Explicit runtime update manifest URL").option("--json", "Output JSON", false).action(async (opts) => runtime.update(opts));
3649
+ program.command("update").description(`Update the ${APP_NAME} runtime`).option("--check", "Only check for a runtime update", false).option("--download-only", "Download an available runtime update without applying it", false).option("--download", "Alias for --download-only").option("--apply", "Apply the downloaded runtime update", false).option("--channel <channel>", "Update channel (stable or beta)").option("--manifest-url <url>", "Explicit runtime update manifest URL").option("--json", "Output JSON", false).action(async (opts) => runtime.update(opts));
3650
3650
  registerSkillsCommands(program, runtime);
3651
3651
  registerAgentsCommands(program, runtime);
3652
3652
  const plugins = program.command("plugins").description("Manage OpenClaw-compatible plugins");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextclaw",
3
- "version": "0.19.7",
3
+ "version": "0.19.8",
4
4
  "description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -42,20 +42,20 @@
42
42
  "jszip": "^3.10.1",
43
43
  "yaml": "^2.8.1",
44
44
  "@nextclaw/core": "0.12.17",
45
- "@nextclaw/kernel": "0.1.6",
46
- "@nextclaw/mcp": "0.1.82",
47
- "@nextclaw/ncp-mcp": "0.1.84",
48
45
  "@nextclaw/ncp": "0.5.10",
46
+ "@nextclaw/mcp": "0.1.82",
49
47
  "@nextclaw/ncp-agent-runtime": "0.3.20",
50
- "@nextclaw/ncp-toolkit": "0.5.15",
51
- "@nextclaw/nextclaw-hermes-acp-bridge": "0.1.9",
48
+ "@nextclaw/kernel": "0.1.6",
52
49
  "@nextclaw/nextclaw-ncp-runtime-http-client": "0.1.9",
53
- "@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.1.10",
54
50
  "@nextclaw/openclaw-compat": "1.0.17",
51
+ "@nextclaw/nextclaw-hermes-acp-bridge": "0.1.9",
55
52
  "@nextclaw/remote": "0.1.94",
56
53
  "@nextclaw/runtime": "0.2.49",
54
+ "@nextclaw/ncp-toolkit": "0.5.15",
55
+ "@nextclaw/service": "0.1.9",
57
56
  "@nextclaw/server": "0.12.17",
58
- "@nextclaw/service": "0.1.8"
57
+ "@nextclaw/ncp-mcp": "0.1.84",
58
+ "@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.1.10"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@types/node": "^20.17.6",
@@ -689,9 +689,10 @@ nextclaw update
689
689
  Behavior:
690
690
 
691
691
  - If `NEXTCLAW_UPDATE_COMMAND` is set, the CLI executes it (useful for custom update flows).
692
- - Otherwise it falls back to `npm i -g nextclaw`.
693
- - `nextclaw update` now prints version progress explicitly: `Current version: x.y.z`, then either `Version updated: x.y.z -> a.b.c` or `Version unchanged: x.y.z`.
694
- - If the background service is running, restart it after the update to apply changes.
692
+ - Otherwise `nextclaw update` checks the runtime update channel, downloads the latest compatible runtime bundle, and applies it.
693
+ - Use `nextclaw update --check` to check without downloading or applying.
694
+ - Use `nextclaw update --download-only` to stage an update without switching the active runtime. `nextclaw update --apply` applies an already staged runtime update.
695
+ - If the background service is running, restart it after `nextclaw update` reports that the runtime update was applied.
695
696
  - When update is triggered from the running gateway (agent `update.run`), NextClaw arms a self-relaunch helper before exiting, so the service comes back automatically (like an OS reboot flow).
696
697
  - After restart, NextClaw automatically pings the last active session with restart/update status (including note when provided).
697
698