nextclaw 0.45.1 → 0.45.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.
@@ -3,7 +3,7 @@ import { t as createNextclawDistribution } from "../../nextclaw-distribution.uti
3
3
  import { NextclawDistributionService, runNextclawNpmRuntimeLauncher } from "@nextclaw/service";
4
4
  //#region src/cli/launcher/index.ts
5
5
  NextclawDistributionService.configure(createNextclawDistribution(import.meta.url));
6
- runNextclawNpmRuntimeLauncher(process.argv);
6
+ await runNextclawNpmRuntimeLauncher(process.argv);
7
7
  //#endregion
8
8
  export {};
9
9
 
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":[],"sources":["../../../src/cli/launcher/index.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { NextclawDistributionService, runNextclawNpmRuntimeLauncher } from \"@nextclaw/service\";\nimport { createNextclawDistribution } from \"@nextclaw-cli/cli/shared/lib/distribution/index.js\";\n\nNextclawDistributionService.configure(createNextclawDistribution(import.meta.url));\nrunNextclawNpmRuntimeLauncher(process.argv);\n"],"mappings":";;;;AAIA,4BAA4B,UAAU,2BAA2B,OAAO,KAAK,IAAI,CAAC;AAClF,8BAA8B,QAAQ,KAAK"}
1
+ {"version":3,"file":"index.js","names":[],"sources":["../../../src/cli/launcher/index.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { NextclawDistributionService, runNextclawNpmRuntimeLauncher } from \"@nextclaw/service\";\nimport { createNextclawDistribution } from \"@nextclaw-cli/cli/shared/lib/distribution/index.js\";\n\nNextclawDistributionService.configure(createNextclawDistribution(import.meta.url));\nawait runNextclawNpmRuntimeLauncher(process.argv);\n"],"mappings":";;;;AAIA,4BAA4B,UAAU,2BAA2B,OAAO,KAAK,IAAI,CAAC;AAClF,MAAM,8BAA8B,QAAQ,KAAK"}
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "nextclaw",
3
- "version": "0.45.1",
3
+ "version": "0.45.2",
4
4
  "description": "Powerful AI assistant for coordinating agents, skills, CLI tools, automations, and messaging apps.",
5
5
  "private": false,
6
6
  "type": "module",
7
+ "engines": {
8
+ "node": "^20.19.0 || >=22.12.0"
9
+ },
7
10
  "bin": {
8
11
  "nextclaw": "dist/cli/launcher/index.js"
9
12
  },
@@ -41,22 +44,22 @@
41
44
  "commander": "^12.1.0",
42
45
  "jszip": "^3.10.1",
43
46
  "yaml": "^2.8.1",
44
- "@nextclaw/core": "0.17.11",
45
- "@nextclaw/app-runtime": "0.14.0",
46
- "@nextclaw/kernel": "0.12.0",
47
- "@nextclaw/mcp": "0.3.38",
47
+ "@nextclaw/app-runtime": "0.14.1",
48
+ "@nextclaw/core": "0.17.12",
48
49
  "@nextclaw/ncp": "0.10.0",
50
+ "@nextclaw/kernel": "0.12.1",
51
+ "@nextclaw/mcp": "0.3.39",
49
52
  "@nextclaw/ncp-agent-runtime": "0.4.21",
50
- "@nextclaw/ncp-mcp": "0.2.38",
51
- "@nextclaw/ncp-toolkit": "0.6.23",
52
53
  "@nextclaw/nextclaw-hermes-acp-bridge": "0.3.21",
54
+ "@nextclaw/ncp-mcp": "0.2.39",
55
+ "@nextclaw/ncp-toolkit": "0.6.23",
53
56
  "@nextclaw/nextclaw-ncp-runtime-http-client": "0.3.22",
54
- "@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.3.38",
55
- "@nextclaw/remote": "0.3.47",
56
- "@nextclaw/server": "0.20.0",
57
- "@nextclaw/service": "0.4.1",
58
- "@nextclaw/shared": "0.4.29",
59
- "@nextclaw/runtime": "0.4.37"
57
+ "@nextclaw/remote": "0.3.48",
58
+ "@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.3.39",
59
+ "@nextclaw/server": "0.20.1",
60
+ "@nextclaw/service": "0.4.2",
61
+ "@nextclaw/shared": "0.4.30",
62
+ "@nextclaw/runtime": "0.4.38"
60
63
  },
61
64
  "devDependencies": {
62
65
  "@types/node": "^20.17.6",
@@ -64,7 +67,7 @@
64
67
  "tsx": "^4.19.2",
65
68
  "typescript": "^5.6.3",
66
69
  "vitest": "^4.1.2",
67
- "@nextclaw/ui": "0.22.0"
70
+ "@nextclaw/ui": "0.22.1"
68
71
  },
69
72
  "scripts": {
70
73
  "dev": "tsx watch --tsconfig ../../scripts/dev/dev-runtime.tsconfig.json src/cli/app/index.ts",
@@ -73,6 +76,7 @@
73
76
  "runtime-update:build": "node scripts/build-npm-runtime-update-channel.mjs",
74
77
  "smoke:npm-runtime-update": "node scripts/smoke-npm-runtime-update.mjs",
75
78
  "validation:npm-update": "node scripts/smoke-npm-runtime-update.mjs --manual",
79
+ "validation:portable-runtime-http": "node scripts/verify-portable-runtime-http-smoke.mjs",
76
80
  "start": "node dist/cli/app/index.js",
77
81
  "lint": "eslint .",
78
82
  "tsc": "tsc -p tsconfig.json",