@memoryrelay/plugin-memoryrelay-ai 0.8.0 → 0.8.1
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/openclaw.plugin.json +21 -0
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -100,6 +100,27 @@
|
|
|
100
100
|
},
|
|
101
101
|
"default": [],
|
|
102
102
|
"description": "List of channel IDs to exclude from auto-recall"
|
|
103
|
+
},
|
|
104
|
+
"debug": {
|
|
105
|
+
"type": "boolean",
|
|
106
|
+
"default": false,
|
|
107
|
+
"description": "Enable debug logging of API calls"
|
|
108
|
+
},
|
|
109
|
+
"verbose": {
|
|
110
|
+
"type": "boolean",
|
|
111
|
+
"default": false,
|
|
112
|
+
"description": "Include request/response bodies in debug logs"
|
|
113
|
+
},
|
|
114
|
+
"logFile": {
|
|
115
|
+
"type": "string",
|
|
116
|
+
"description": "Optional file path for persistent debug logs"
|
|
117
|
+
},
|
|
118
|
+
"maxLogEntries": {
|
|
119
|
+
"type": "number",
|
|
120
|
+
"default": 100,
|
|
121
|
+
"minimum": 10,
|
|
122
|
+
"maximum": 10000,
|
|
123
|
+
"description": "Circular buffer size for in-memory logs"
|
|
103
124
|
}
|
|
104
125
|
},
|
|
105
126
|
"required": []
|
package/package.json
CHANGED