nextclaw 0.36.0 → 0.36.1
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 +4 -4940
- package/dist/cli/app/index.js.map +1 -1
- package/dist/cli/launcher/index.js +1 -1
- package/dist/nextclaw-cli-app-BITGWcdZ.js +4943 -0
- package/dist/nextclaw-cli-app-BITGWcdZ.js.map +1 -0
- package/dist/{nextclaw-distribution.utils-CfUuTwjt.js → nextclaw-distribution.utils-BneKclXo.js} +3 -1
- package/dist/nextclaw-distribution.utils-BneKclXo.js.map +1 -0
- package/package.json +9 -9
- package/dist/nextclaw-distribution.utils-CfUuTwjt.js.map +0 -1
package/dist/{nextclaw-distribution.utils-CfUuTwjt.js → nextclaw-distribution.utils-BneKclXo.js}
RENAMED
|
@@ -9,7 +9,9 @@ function createNextclawDistribution(importMetaUrl) {
|
|
|
9
9
|
return {
|
|
10
10
|
version: typeof version === "string" ? version : "0.0.0",
|
|
11
11
|
appEntrypoint: resolve(packageRoot, "dist/cli/app/index.js"),
|
|
12
|
+
launcherVersion: typeof version === "string" ? version : "0.0.0",
|
|
12
13
|
launcherEntrypoint: resolve(dirname(entrypoint), "../launcher", basename(entrypoint)),
|
|
14
|
+
launchedByLauncher: false,
|
|
13
15
|
templatesDir: resolve(packageRoot, "templates"),
|
|
14
16
|
uiDistDir: resolve(packageRoot, "ui-dist"),
|
|
15
17
|
runtimeUpdatePublicKeyPath: resolve(packageRoot, "resources/update-bundle-public.pem"),
|
|
@@ -19,4 +21,4 @@ function createNextclawDistribution(importMetaUrl) {
|
|
|
19
21
|
//#endregion
|
|
20
22
|
export { createNextclawDistribution as t };
|
|
21
23
|
|
|
22
|
-
//# sourceMappingURL=nextclaw-distribution.utils-
|
|
24
|
+
//# sourceMappingURL=nextclaw-distribution.utils-BneKclXo.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nextclaw-distribution.utils-BneKclXo.js","names":[],"sources":["../src/cli/shared/lib/distribution/nextclaw-distribution.utils.ts"],"sourcesContent":["import { readFileSync } from \"node:fs\";\nimport { basename, dirname, resolve } from \"node:path\";\nimport { fileURLToPath } from \"node:url\";\nimport type { NextclawDistribution } from \"@nextclaw/service\";\n\nexport function createNextclawDistribution(importMetaUrl: string): NextclawDistribution {\n const entrypoint = fileURLToPath(importMetaUrl);\n const packageRoot = resolve(dirname(entrypoint), \"../../..\");\n const { version } = JSON.parse(readFileSync(resolve(packageRoot, \"package.json\"), \"utf-8\")) as { version?: string };\n return {\n version: typeof version === \"string\" ? version : \"0.0.0\",\n appEntrypoint: resolve(packageRoot, \"dist/cli/app/index.js\"),\n launcherVersion: typeof version === \"string\" ? version : \"0.0.0\",\n launcherEntrypoint: resolve(dirname(entrypoint), \"../launcher\", basename(entrypoint)),\n launchedByLauncher: false,\n templatesDir: resolve(packageRoot, \"templates\"),\n uiDistDir: resolve(packageRoot, \"ui-dist\"),\n runtimeUpdatePublicKeyPath: resolve(packageRoot, \"resources/update-bundle-public.pem\"),\n builtInAppsDirectory: resolve(packageRoot, \"resources/apps\")\n };\n}\n"],"mappings":";;;;AAKA,SAAgB,2BAA2B,eAA6C;CACtF,MAAM,aAAa,cAAc,cAAc;CAC/C,MAAM,cAAc,QAAQ,QAAQ,WAAW,EAAE,WAAW;CAC5D,MAAM,EAAE,YAAY,KAAK,MAAM,aAAa,QAAQ,aAAa,eAAe,EAAE,QAAQ,CAAC;AAC3F,QAAO;EACL,SAAS,OAAO,YAAY,WAAW,UAAU;EACjD,eAAe,QAAQ,aAAa,wBAAwB;EAC5D,iBAAiB,OAAO,YAAY,WAAW,UAAU;EACzD,oBAAoB,QAAQ,QAAQ,WAAW,EAAE,eAAe,SAAS,WAAW,CAAC;EACrF,oBAAoB;EACpB,cAAc,QAAQ,aAAa,YAAY;EAC/C,WAAW,QAAQ,aAAa,UAAU;EAC1C,4BAA4B,QAAQ,aAAa,qCAAqC;EACtF,sBAAsB,QAAQ,aAAa,iBAAiB;EAC7D"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nextclaw",
|
|
3
|
-
"version": "0.36.
|
|
3
|
+
"version": "0.36.1",
|
|
4
4
|
"description": "Powerful AI assistant for coordinating agents, skills, CLI tools, automations, and messaging apps.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -41,21 +41,21 @@
|
|
|
41
41
|
"commander": "^12.1.0",
|
|
42
42
|
"jszip": "^3.10.1",
|
|
43
43
|
"yaml": "^2.8.1",
|
|
44
|
-
"@nextclaw/app-runtime": "0.12.0",
|
|
45
44
|
"@nextclaw/core": "0.17.0",
|
|
46
|
-
"@nextclaw/ncp": "0.7.17",
|
|
47
45
|
"@nextclaw/kernel": "0.8.0",
|
|
46
|
+
"@nextclaw/mcp": "0.3.27",
|
|
47
|
+
"@nextclaw/ncp": "0.7.17",
|
|
48
48
|
"@nextclaw/ncp-mcp": "0.2.27",
|
|
49
|
-
"@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.3.27",
|
|
50
49
|
"@nextclaw/ncp-toolkit": "0.6.19",
|
|
51
|
-
"@nextclaw/nextclaw-ncp-runtime-http-client": "0.3.17",
|
|
52
|
-
"@nextclaw/nextclaw-hermes-acp-bridge": "0.3.17",
|
|
53
50
|
"@nextclaw/ncp-agent-runtime": "0.4.17",
|
|
54
|
-
"@nextclaw/
|
|
51
|
+
"@nextclaw/app-runtime": "0.12.0",
|
|
55
52
|
"@nextclaw/remote": "0.3.30",
|
|
56
|
-
"@nextclaw/service": "0.3.32",
|
|
57
53
|
"@nextclaw/runtime": "0.4.26",
|
|
58
|
-
"@nextclaw/
|
|
54
|
+
"@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.3.27",
|
|
55
|
+
"@nextclaw/server": "0.16.0",
|
|
56
|
+
"@nextclaw/service": "0.3.33",
|
|
57
|
+
"@nextclaw/nextclaw-hermes-acp-bridge": "0.3.17",
|
|
58
|
+
"@nextclaw/nextclaw-ncp-runtime-http-client": "0.3.17"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@types/node": "^20.17.6",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"nextclaw-distribution.utils-CfUuTwjt.js","names":[],"sources":["../src/cli/shared/lib/distribution/nextclaw-distribution.utils.ts"],"sourcesContent":["import { readFileSync } from \"node:fs\";\nimport { basename, dirname, resolve } from \"node:path\";\nimport { fileURLToPath } from \"node:url\";\nimport type { NextclawDistribution } from \"@nextclaw/service\";\n\nexport function createNextclawDistribution(importMetaUrl: string): NextclawDistribution {\n const entrypoint = fileURLToPath(importMetaUrl);\n const packageRoot = resolve(dirname(entrypoint), \"../../..\");\n const { version } = JSON.parse(readFileSync(resolve(packageRoot, \"package.json\"), \"utf-8\")) as { version?: string };\n return {\n version: typeof version === \"string\" ? version : \"0.0.0\",\n appEntrypoint: resolve(packageRoot, \"dist/cli/app/index.js\"),\n launcherEntrypoint: resolve(dirname(entrypoint), \"../launcher\", basename(entrypoint)),\n templatesDir: resolve(packageRoot, \"templates\"),\n uiDistDir: resolve(packageRoot, \"ui-dist\"),\n runtimeUpdatePublicKeyPath: resolve(packageRoot, \"resources/update-bundle-public.pem\"),\n builtInAppsDirectory: resolve(packageRoot, \"resources/apps\")\n };\n}\n"],"mappings":";;;;AAKA,SAAgB,2BAA2B,eAA6C;CACtF,MAAM,aAAa,cAAc,cAAc;CAC/C,MAAM,cAAc,QAAQ,QAAQ,WAAW,EAAE,WAAW;CAC5D,MAAM,EAAE,YAAY,KAAK,MAAM,aAAa,QAAQ,aAAa,eAAe,EAAE,QAAQ,CAAC;AAC3F,QAAO;EACL,SAAS,OAAO,YAAY,WAAW,UAAU;EACjD,eAAe,QAAQ,aAAa,wBAAwB;EAC5D,oBAAoB,QAAQ,QAAQ,WAAW,EAAE,eAAe,SAAS,WAAW,CAAC;EACrF,cAAc,QAAQ,aAAa,YAAY;EAC/C,WAAW,QAAQ,aAAa,UAAU;EAC1C,4BAA4B,QAAQ,aAAa,qCAAqC;EACtF,sBAAsB,QAAQ,aAAa,iBAAiB;EAC7D"}
|