@nextclaw/server 0.10.23 → 0.10.24
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/index.js +1 -3
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1306,9 +1306,7 @@ function loadConfigOrDefault(configPath) {
|
|
|
1306
1306
|
}
|
|
1307
1307
|
function updateModel(configPath, patch) {
|
|
1308
1308
|
const config = loadConfigOrDefault(configPath);
|
|
1309
|
-
if (typeof patch.model === "string")
|
|
1310
|
-
config.agents.defaults.model = patch.model;
|
|
1311
|
-
}
|
|
1309
|
+
if (typeof patch.model === "string") config.agents.defaults.model = patch.model;
|
|
1312
1310
|
if (typeof patch.workspace === "string") {
|
|
1313
1311
|
config.agents.defaults.workspace = normalizeOptionalString(patch.workspace) ?? DEFAULT_WORKSPACE_PATH;
|
|
1314
1312
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextclaw/server",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.24",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Nextclaw UI/API server.",
|
|
6
6
|
"type": "module",
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"@hono/node-server": "^1.13.3",
|
|
19
19
|
"hono": "^4.6.2",
|
|
20
20
|
"ws": "^8.18.0",
|
|
21
|
-
"@nextclaw/mcp": "0.1.23",
|
|
22
21
|
"@nextclaw/ncp": "0.3.1",
|
|
23
22
|
"@nextclaw/ncp-http-agent-server": "0.3.1",
|
|
24
|
-
"@nextclaw/
|
|
23
|
+
"@nextclaw/core": "0.9.8",
|
|
25
24
|
"@nextclaw/runtime": "0.2.8",
|
|
26
|
-
"@nextclaw/
|
|
25
|
+
"@nextclaw/mcp": "0.1.24",
|
|
26
|
+
"@nextclaw/openclaw-compat": "0.3.11"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "^20.17.6",
|