nextclaw 0.15.14 → 0.15.15
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/index.js +3 -1
- package/package.json +12 -12
package/dist/cli/index.js
CHANGED
|
@@ -7314,10 +7314,11 @@ function createManagedRemoteModule(params) {
|
|
|
7314
7314
|
});
|
|
7315
7315
|
}
|
|
7316
7316
|
function createManagedRemoteModuleForUi(params) {
|
|
7317
|
+
const explicitLocalOrigin = params.localOriginOverride?.trim() ?? process.env.NEXTCLAW_REMOTE_LOCAL_ORIGIN?.trim();
|
|
7317
7318
|
return createManagedRemoteModule({
|
|
7318
7319
|
loadConfig: params.loadConfig,
|
|
7319
7320
|
uiEnabled: params.uiConfig.enabled,
|
|
7320
|
-
localOrigin: resolveUiApiBase(params.uiConfig.host, params.uiConfig.port)
|
|
7321
|
+
localOrigin: explicitLocalOrigin && explicitLocalOrigin.length > 0 ? explicitLocalOrigin.replace(/\/+$/, "") : resolveUiApiBase(params.uiConfig.host, params.uiConfig.port)
|
|
7321
7322
|
});
|
|
7322
7323
|
}
|
|
7323
7324
|
function writeInitialManagedServiceState(params) {
|
|
@@ -9157,6 +9158,7 @@ var ServiceCommands = class {
|
|
|
9157
9158
|
configPath: getConfigPath9(),
|
|
9158
9159
|
productVersion: getPackageVersion(),
|
|
9159
9160
|
staticDir: uiStaticDir ?? void 0,
|
|
9161
|
+
applyLiveConfigReload: this.applyLiveConfigReload ?? void 0,
|
|
9160
9162
|
cronService,
|
|
9161
9163
|
marketplace: {
|
|
9162
9164
|
apiBaseUrl: process.env.NEXTCLAW_MARKETPLACE_API_BASE,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nextclaw",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.15",
|
|
4
4
|
"description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -39,16 +39,16 @@
|
|
|
39
39
|
"chokidar": "^3.6.0",
|
|
40
40
|
"commander": "^12.1.0",
|
|
41
41
|
"yaml": "^2.8.1",
|
|
42
|
-
"@nextclaw/
|
|
43
|
-
"@nextclaw/
|
|
44
|
-
"@nextclaw/
|
|
45
|
-
"@nextclaw/ncp-
|
|
46
|
-
"@nextclaw/ncp": "0.
|
|
47
|
-
"@nextclaw/ncp-toolkit": "0.4.
|
|
48
|
-
"@nextclaw/
|
|
49
|
-
"@nextclaw/
|
|
50
|
-
"@nextclaw/server": "0.10.
|
|
51
|
-
"@nextclaw/openclaw-compat": "0.3.
|
|
42
|
+
"@nextclaw/core": "0.11.2",
|
|
43
|
+
"@nextclaw/mcp": "0.1.51",
|
|
44
|
+
"@nextclaw/ncp": "0.3.3",
|
|
45
|
+
"@nextclaw/ncp-agent-runtime": "0.2.4",
|
|
46
|
+
"@nextclaw/ncp-mcp": "0.1.50",
|
|
47
|
+
"@nextclaw/ncp-toolkit": "0.4.3",
|
|
48
|
+
"@nextclaw/remote": "0.1.51",
|
|
49
|
+
"@nextclaw/runtime": "0.2.16",
|
|
50
|
+
"@nextclaw/server": "0.10.57",
|
|
51
|
+
"@nextclaw/openclaw-compat": "0.3.33"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/node": "^20.17.6",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"tsx": "^4.19.2",
|
|
58
58
|
"typescript": "^5.6.3",
|
|
59
59
|
"vitest": "^2.1.2",
|
|
60
|
-
"@nextclaw/ui": "0.10.
|
|
60
|
+
"@nextclaw/ui": "0.10.5"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"dev": "tsx watch --tsconfig tsconfig.json src/cli/index.ts",
|