agenr 0.9.23 → 0.9.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.9.24 (2026-02-28)
4
+
5
+ ### Bug Fixes
6
+ - Added storeNudge to openclaw.plugin.json configSchema so OpenClaw accepts
7
+ storeNudge config without validation errors
8
+
3
9
  ## 0.9.23 (2026-03-01)
4
10
 
5
11
  ### Added
@@ -102,7 +102,26 @@
102
102
  "description": "Directory to write handoff LLM request/response logs for debugging. Requires logEnabled: true."
103
103
  }
104
104
  }
105
+ },
106
+ "storeNudge": {
107
+ "type": "object",
108
+ "description": "Store nudge configuration.",
109
+ "properties": {
110
+ "enabled": {
111
+ "type": "boolean",
112
+ "description": "Set false to disable store nudging (default: true)."
113
+ },
114
+ "threshold": {
115
+ "type": "number",
116
+ "description": "Turns without agenr_store before nudging (default: 8)."
117
+ },
118
+ "maxPerSession": {
119
+ "type": "number",
120
+ "description": "Max nudges per session (default: 5)."
121
+ }
122
+ },
123
+ "additionalProperties": false
105
124
  }
106
125
  }
107
126
  }
108
- }
127
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agenr",
3
- "version": "0.9.23",
3
+ "version": "0.9.24",
4
4
  "openclaw": {
5
5
  "extensions": [
6
6
  "dist/openclaw-plugin/index.js"