@agenr/openclaw-plugin 0.11.2 → 0.12.0
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 +79 -0
- package/README.md +0 -1
- package/dist/index.js +23792 -18969
- package/openclaw.plugin.json +27 -0
- package/package.json +2 -2
package/openclaw.plugin.json
CHANGED
|
@@ -153,6 +153,33 @@
|
|
|
153
153
|
"type": "string"
|
|
154
154
|
},
|
|
155
155
|
"description": "Project names whose core entries are always injected at session start. Empty list or omit to skip core injection."
|
|
156
|
+
},
|
|
157
|
+
"sessionStartSectionCaps": {
|
|
158
|
+
"type": "object",
|
|
159
|
+
"description": "Per-section caps for session-start memory injection. Set a section to 0 to disable it. Defaults: core=6, active=4, preferences=4, recent=2.",
|
|
160
|
+
"additionalProperties": false,
|
|
161
|
+
"properties": {
|
|
162
|
+
"core": {
|
|
163
|
+
"type": "number",
|
|
164
|
+
"description": "Max core entries injected at session start (default: 6).",
|
|
165
|
+
"minimum": 0
|
|
166
|
+
},
|
|
167
|
+
"active": {
|
|
168
|
+
"type": "number",
|
|
169
|
+
"description": "Max active todo entries injected at session start (default: 4).",
|
|
170
|
+
"minimum": 0
|
|
171
|
+
},
|
|
172
|
+
"preferences": {
|
|
173
|
+
"type": "number",
|
|
174
|
+
"description": "Max preference/decision entries injected at session start (default: 4).",
|
|
175
|
+
"minimum": 0
|
|
176
|
+
},
|
|
177
|
+
"recent": {
|
|
178
|
+
"type": "number",
|
|
179
|
+
"description": "Max recent state/continuity entries injected at session start (default: 2).",
|
|
180
|
+
"minimum": 0
|
|
181
|
+
}
|
|
182
|
+
}
|
|
156
183
|
}
|
|
157
184
|
}
|
|
158
185
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenr/openclaw-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "agenr memory plugin for OpenClaw — lightweight plugin-only package without the CLI",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"author": "agenr-ai",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@libsql/client": "^0.17.0",
|
|
28
|
-
"@mariozechner/pi-ai": "^0.
|
|
28
|
+
"@mariozechner/pi-ai": "^0.60.0",
|
|
29
29
|
"@sinclair/typebox": "^0.34.48"
|
|
30
30
|
},
|
|
31
31
|
"openclaw": {
|