nextclaw 0.19.2 → 0.19.3
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/app/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { t as readNextclawPackageVersion } from "../../package-version.utils-
|
|
2
|
+
import { n as resolveNextclawPackageResource, t as readNextclawPackageVersion } from "../../package-version.utils-BIAQ3zyy.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-
|
|
2
|
+
import { t as readNextclawPackageVersion } from "../../package-version.utils-BIAQ3zyy.js";
|
|
3
3
|
import { dirname, resolve } from "node:path";
|
|
4
4
|
import { runNextclawNpmRuntimeLauncher } from "@nextclaw/service";
|
|
5
5
|
import { fileURLToPath } from "node:url";
|
|
@@ -7,5 +7,8 @@ function readNextclawPackageVersion(importMetaUrl) {
|
|
|
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.
|
|
3
|
+
"version": "0.19.3",
|
|
4
4
|
"description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -43,20 +43,20 @@
|
|
|
43
43
|
"yaml": "^2.8.1",
|
|
44
44
|
"@nextclaw/companion": "0.1.2",
|
|
45
45
|
"@nextclaw/core": "0.12.14",
|
|
46
|
-
"@nextclaw/
|
|
46
|
+
"@nextclaw/ncp-agent-runtime": "0.3.17",
|
|
47
47
|
"@nextclaw/ncp": "0.5.7",
|
|
48
48
|
"@nextclaw/mcp": "0.1.79",
|
|
49
49
|
"@nextclaw/nextclaw-hermes-acp-bridge": "0.1.6",
|
|
50
|
+
"@nextclaw/nextclaw-ncp-runtime-http-client": "0.1.6",
|
|
51
|
+
"@nextclaw/ncp-toolkit": "0.5.12",
|
|
52
|
+
"@nextclaw/kernel": "0.1.3",
|
|
50
53
|
"@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.1.7",
|
|
54
|
+
"@nextclaw/ncp-mcp": "0.1.81",
|
|
51
55
|
"@nextclaw/openclaw-compat": "1.0.14",
|
|
52
|
-
"@nextclaw/
|
|
56
|
+
"@nextclaw/service": "0.1.4",
|
|
53
57
|
"@nextclaw/runtime": "0.2.46",
|
|
54
|
-
"@nextclaw/ncp-mcp": "0.1.81",
|
|
55
58
|
"@nextclaw/remote": "0.1.91",
|
|
56
|
-
"@nextclaw/
|
|
57
|
-
"@nextclaw/ncp-agent-runtime": "0.3.17",
|
|
58
|
-
"@nextclaw/server": "0.12.14",
|
|
59
|
-
"@nextclaw/ncp-toolkit": "0.5.12"
|
|
59
|
+
"@nextclaw/server": "0.12.14"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@types/node": "^20.17.6",
|