nextclaw 0.6.6 → 0.6.8
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/package.json +2 -2
- package/templates/USAGE.md +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nextclaw",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.8",
|
|
4
4
|
"description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"chokidar": "^3.6.0",
|
|
40
40
|
"commander": "^12.1.0",
|
|
41
|
-
"@nextclaw/core": "^0.6.
|
|
41
|
+
"@nextclaw/core": "^0.6.7",
|
|
42
42
|
"@nextclaw/server": "^0.4.2",
|
|
43
43
|
"@nextclaw/openclaw-compat": "^0.1.5"
|
|
44
44
|
},
|
package/templates/USAGE.md
CHANGED
|
@@ -243,6 +243,12 @@ OpenClaw-compatible plugin discovery paths:
|
|
|
243
243
|
|
|
244
244
|
Legacy OpenClaw directories are not scanned by default (`~/.openclaw/extensions`, `<workspace>/.openclaw/extensions`).
|
|
245
245
|
|
|
246
|
+
Silent reply behavior:
|
|
247
|
+
|
|
248
|
+
- If the model returns exactly `NO_REPLY`, NextClaw does not send any channel reply.
|
|
249
|
+
- If the final normalized reply is empty/whitespace, NextClaw also keeps silent (no fallback text).
|
|
250
|
+
- This matches OpenClaw's core no-reply expectation while keeping logic minimal.
|
|
251
|
+
|
|
246
252
|
---
|
|
247
253
|
|
|
248
254
|
## Self-update
|