@nextclaw/server 0.10.23 → 0.10.25

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -3
  2. package/package.json +3 -3
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.23",
3
+ "version": "0.10.25",
4
4
  "private": false,
5
5
  "description": "Nextclaw UI/API server.",
6
6
  "type": "module",
@@ -18,10 +18,10 @@
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
- "@nextclaw/ncp-http-agent-server": "0.3.1",
22
+ "@nextclaw/mcp": "0.1.25",
24
23
  "@nextclaw/openclaw-compat": "0.3.11",
24
+ "@nextclaw/ncp-http-agent-server": "0.3.1",
25
25
  "@nextclaw/runtime": "0.2.8",
26
26
  "@nextclaw/core": "0.9.8"
27
27
  },