nextclaw 0.6.16 → 0.6.18

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 CHANGED
@@ -2365,7 +2365,6 @@ var ServiceCommands = class {
2365
2365
  model: config2.agents.defaults.model,
2366
2366
  maxIterations: config2.agents.defaults.maxToolIterations,
2367
2367
  maxTokens: config2.agents.defaults.maxTokens,
2368
- temperature: config2.agents.defaults.temperature,
2369
2368
  braveApiKey: config2.tools.web.search.apiKey || void 0,
2370
2369
  execConfig: config2.tools.exec,
2371
2370
  cronService: cron2,
@@ -3367,7 +3366,6 @@ ${this.logo} ${APP_NAME4} is ready! (${source})`);
3367
3366
  model: config2.agents.defaults.model,
3368
3367
  maxIterations: config2.agents.defaults.maxToolIterations,
3369
3368
  maxTokens: config2.agents.defaults.maxTokens,
3370
- temperature: config2.agents.defaults.temperature,
3371
3369
  braveApiKey: config2.tools.web.search.apiKey || void 0,
3372
3370
  execConfig: config2.tools.exec,
3373
3371
  restrictToWorkspace: config2.tools.restrictToWorkspace,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextclaw",
3
- "version": "0.6.16",
3
+ "version": "0.6.18",
4
4
  "description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -38,9 +38,9 @@
38
38
  "dependencies": {
39
39
  "chokidar": "^3.6.0",
40
40
  "commander": "^12.1.0",
41
- "@nextclaw/core": "^0.6.16",
42
- "@nextclaw/server": "^0.4.2",
43
- "@nextclaw/openclaw-compat": "^0.1.6"
41
+ "@nextclaw/core": "^0.6.19",
42
+ "@nextclaw/server": "^0.4.4",
43
+ "@nextclaw/openclaw-compat": "^0.1.10"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/node": "^20.17.6",
package/templates/BOOT.md CHANGED
@@ -1,4 +1,4 @@
1
1
  # BOOT.md
2
2
 
3
3
  Add short, explicit instructions for what the assistant should do on startup.
4
- If a task sends a message, send it and then reply with NO_REPLY.
4
+ If a task sends a message, send it and then reply with two blank lines followed by <noreply/>.
@@ -130,7 +130,6 @@ When the gateway is already running, config changes from the UI or `nextclaw con
130
130
  - `agents.defaults.model`
131
131
  - `agents.defaults.maxToolIterations`
132
132
  - `agents.defaults.maxTokens`
133
- - `agents.defaults.temperature`
134
133
  - `agents.context.*`
135
134
  - `tools.*`
136
135
 
@@ -245,7 +244,7 @@ Legacy OpenClaw directories are not scanned by default (`~/.openclaw/extensions`
245
244
 
246
245
  Silent reply behavior:
247
246
 
248
- - If the model returns exactly `NO_REPLY`, NextClaw does not send any channel reply.
247
+ - If the model contains `<noreply/>`, NextClaw does not send any channel reply.
249
248
  - If the final normalized reply is empty/whitespace, NextClaw also keeps silent (no fallback text).
250
249
  - This matches OpenClaw's core no-reply expectation while keeping logic minimal.
251
250