@memoryrelay/plugin-memoryrelay-ai 0.13.0 → 0.15.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/README.md +217 -197
- package/index.ts +794 -3
- package/openclaw.plugin.json +56 -4
- package/package.json +2 -2
package/openclaw.plugin.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"id": "plugin-memoryrelay-ai",
|
|
3
3
|
"kind": "memory",
|
|
4
4
|
"name": "MemoryRelay AI",
|
|
5
|
-
"description": "MemoryRelay v0.
|
|
6
|
-
"version": "0.
|
|
5
|
+
"description": "MemoryRelay v0.15.0 - Long-term memory with 42 tools, 16 commands, V2 async, sessions, decisions, patterns & projects (api.memoryrelay.net)",
|
|
6
|
+
"version": "0.15.0",
|
|
7
7
|
"uiHints": {
|
|
8
8
|
"apiKey": {
|
|
9
9
|
"label": "MemoryRelay API Key",
|
|
@@ -57,6 +57,32 @@
|
|
|
57
57
|
"placeholder": "30",
|
|
58
58
|
"advanced": true,
|
|
59
59
|
"help": "How often to check for stale sessions (default: 30)"
|
|
60
|
+
},
|
|
61
|
+
"recallLimit": {
|
|
62
|
+
"label": "Recall Limit",
|
|
63
|
+
"placeholder": "5",
|
|
64
|
+
"help": "Maximum number of memories to inject per auto-recall (1-20)"
|
|
65
|
+
},
|
|
66
|
+
"recallThreshold": {
|
|
67
|
+
"label": "Recall Threshold",
|
|
68
|
+
"placeholder": "0.3",
|
|
69
|
+
"help": "Minimum similarity score for auto-recall (0-1, lower = more results)"
|
|
70
|
+
},
|
|
71
|
+
"debug": {
|
|
72
|
+
"label": "Debug Logging",
|
|
73
|
+
"help": "Enable debug logging of API calls",
|
|
74
|
+
"advanced": true
|
|
75
|
+
},
|
|
76
|
+
"verbose": {
|
|
77
|
+
"label": "Verbose Logging",
|
|
78
|
+
"help": "Include request/response bodies in debug logs (requires debug: true)",
|
|
79
|
+
"advanced": true
|
|
80
|
+
},
|
|
81
|
+
"maxLogEntries": {
|
|
82
|
+
"label": "Max Log Entries",
|
|
83
|
+
"placeholder": "100",
|
|
84
|
+
"help": "Circular buffer size for in-memory debug logs (10-10,000)",
|
|
85
|
+
"advanced": true
|
|
60
86
|
}
|
|
61
87
|
},
|
|
62
88
|
"configSchema": {
|
|
@@ -86,8 +112,34 @@
|
|
|
86
112
|
"description": "Comma-separated tool groups to enable: memory, entity, agent, session, decision, pattern, project, health, or 'all' (default: all)"
|
|
87
113
|
},
|
|
88
114
|
"autoCapture": {
|
|
89
|
-
"
|
|
90
|
-
|
|
115
|
+
"oneOf": [
|
|
116
|
+
{ "type": "boolean" },
|
|
117
|
+
{
|
|
118
|
+
"type": "object",
|
|
119
|
+
"properties": {
|
|
120
|
+
"enabled": { "type": "boolean", "default": true },
|
|
121
|
+
"tier": { "type": "string", "enum": ["off", "conservative", "smart", "aggressive"], "default": "smart" },
|
|
122
|
+
"confirmFirst": { "type": "number", "default": 5, "minimum": 0, "description": "Number of captures to confirm before auto-accepting" },
|
|
123
|
+
"categories": {
|
|
124
|
+
"type": "object",
|
|
125
|
+
"properties": {
|
|
126
|
+
"credentials": { "type": "boolean", "default": true },
|
|
127
|
+
"preferences": { "type": "boolean", "default": true },
|
|
128
|
+
"technical": { "type": "boolean", "default": true },
|
|
129
|
+
"personal": { "type": "boolean", "default": false, "description": "Privacy: personal info requires confirmation" }
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"blocklist": {
|
|
133
|
+
"type": "array",
|
|
134
|
+
"items": { "type": "string" },
|
|
135
|
+
"default": [],
|
|
136
|
+
"description": "Regex patterns for content to never capture"
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
],
|
|
141
|
+
"default": true,
|
|
142
|
+
"description": "Auto-capture configuration. Use true/false for simple toggle, or object for fine-grained control."
|
|
91
143
|
},
|
|
92
144
|
"autoRecall": {
|
|
93
145
|
"type": "boolean",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memoryrelay/plugin-memoryrelay-ai",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "OpenClaw memory plugin for MemoryRelay API - sessions, decisions, patterns, projects & semantic search",
|
|
3
|
+
"version": "0.15.0",
|
|
4
|
+
"description": "OpenClaw memory plugin for MemoryRelay API - 42 tools, 16 commands, V2 async, sessions, decisions, patterns, projects & semantic search",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|
|
7
7
|
"scripts": {
|