nextclaw 0.19.2 → 0.19.4

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.
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { t as readNextclawPackageVersion } from "../../package-version.utils-BVMIgyn8.js";
2
+ import { n as resolveNextclawPackageResource, t as readNextclawPackageVersion } from "../../package-version.utils-CDBCw45-.js";
3
3
  import { createRequire } from "node:module";
4
4
  import { APP_NAME, APP_TAGLINE, loadConfig } from "@nextclaw/core";
5
5
  import { Command } from "commander";
@@ -3634,6 +3634,7 @@ const LOGO = "🤖";
3634
3634
  const program = new Command();
3635
3635
  const runtime = new NextclawServiceRuntime({
3636
3636
  logo: LOGO,
3637
+ packagedPublicKeyPath: resolveNextclawPackageResource(import.meta.url, "update-bundle-public.pem"),
3637
3638
  version: readNextclawPackageVersion(import.meta.url)
3638
3639
  });
3639
3640
  const withRepeatableTag = (value, previous = []) => [...previous, value];
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { t as readNextclawPackageVersion } from "../../package-version.utils-BVMIgyn8.js";
2
+ import { t as readNextclawPackageVersion } from "../../package-version.utils-CDBCw45-.js";
3
3
  import { dirname, resolve } from "node:path";
4
4
  import { runNextclawNpmRuntimeLauncher } from "@nextclaw/service";
5
5
  import { fileURLToPath } from "node:url";
@@ -1,11 +1,14 @@
1
1
  import { readFileSync } from "node:fs";
2
2
  import { dirname, resolve } from "node:path";
3
3
  import { fileURLToPath } from "node:url";
4
- //#region src/cli/package-version.utils.ts
4
+ //#region src/cli/shared/lib/package-version/package-version.utils.ts
5
5
  function readNextclawPackageVersion(importMetaUrl) {
6
6
  const packageJsonPath = resolve(dirname(fileURLToPath(importMetaUrl)), "../../../package.json");
7
7
  const parsed = JSON.parse(readFileSync(packageJsonPath, "utf-8"));
8
8
  return typeof parsed.version === "string" ? parsed.version : "0.0.0";
9
9
  }
10
+ function resolveNextclawPackageResource(importMetaUrl, resourcePath) {
11
+ return resolve(dirname(fileURLToPath(importMetaUrl)), "../../../resources", resourcePath);
12
+ }
10
13
  //#endregion
11
- export { readNextclawPackageVersion as t };
14
+ export { resolveNextclawPackageResource as n, readNextclawPackageVersion as t };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextclaw",
3
- "version": "0.19.2",
3
+ "version": "0.19.4",
4
4
  "description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -41,22 +41,22 @@
41
41
  "commander": "^12.1.0",
42
42
  "jszip": "^3.10.1",
43
43
  "yaml": "^2.8.1",
44
- "@nextclaw/companion": "0.1.2",
45
- "@nextclaw/core": "0.12.14",
46
- "@nextclaw/kernel": "0.1.3",
47
- "@nextclaw/ncp": "0.5.7",
48
- "@nextclaw/mcp": "0.1.79",
49
- "@nextclaw/nextclaw-hermes-acp-bridge": "0.1.6",
50
- "@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.1.7",
51
- "@nextclaw/openclaw-compat": "1.0.14",
52
- "@nextclaw/nextclaw-ncp-runtime-http-client": "0.1.6",
53
- "@nextclaw/runtime": "0.2.46",
54
- "@nextclaw/ncp-mcp": "0.1.81",
55
- "@nextclaw/remote": "0.1.91",
56
- "@nextclaw/service": "0.1.3",
57
- "@nextclaw/ncp-agent-runtime": "0.3.17",
58
- "@nextclaw/server": "0.12.14",
59
- "@nextclaw/ncp-toolkit": "0.5.12"
44
+ "@nextclaw/companion": "0.1.3",
45
+ "@nextclaw/core": "0.12.15",
46
+ "@nextclaw/kernel": "0.1.4",
47
+ "@nextclaw/mcp": "0.1.80",
48
+ "@nextclaw/ncp-agent-runtime": "0.3.18",
49
+ "@nextclaw/ncp-mcp": "0.1.82",
50
+ "@nextclaw/ncp-toolkit": "0.5.13",
51
+ "@nextclaw/ncp": "0.5.8",
52
+ "@nextclaw/nextclaw-hermes-acp-bridge": "0.1.7",
53
+ "@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.1.8",
54
+ "@nextclaw/nextclaw-ncp-runtime-http-client": "0.1.7",
55
+ "@nextclaw/openclaw-compat": "1.0.15",
56
+ "@nextclaw/remote": "0.1.92",
57
+ "@nextclaw/runtime": "0.2.47",
58
+ "@nextclaw/service": "0.1.5",
59
+ "@nextclaw/server": "0.12.15"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@types/node": "^20.17.6",
@@ -64,7 +64,7 @@
64
64
  "tsx": "^4.19.2",
65
65
  "typescript": "^5.6.3",
66
66
  "vitest": "^4.1.2",
67
- "@nextclaw/ui": "0.12.21"
67
+ "@nextclaw/ui": "0.12.22"
68
68
  },
69
69
  "scripts": {
70
70
  "dev": "tsx watch --tsconfig tsconfig.json src/cli/app/index.ts",