@memoryrelay/plugin-memoryrelay-ai 0.6.2 → 0.7.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 +170 -187
- package/index.ts +2625 -235
- package/openclaw.plugin.json +22 -3
- package/package.json +2 -2
package/openclaw.plugin.json
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
"id": "plugin-memoryrelay-ai",
|
|
3
3
|
"kind": "memory",
|
|
4
4
|
"name": "MemoryRelay AI",
|
|
5
|
-
"description": "AI memory service
|
|
6
|
-
"version": "0.
|
|
5
|
+
"description": "AI memory service with sessions, decisions, patterns & projects (api.memoryrelay.net)",
|
|
6
|
+
"version": "0.7.0",
|
|
7
7
|
"uiHints": {
|
|
8
8
|
"apiKey": {
|
|
9
9
|
"label": "MemoryRelay API Key",
|
|
10
10
|
"sensitive": true,
|
|
11
11
|
"placeholder": "mem_prod_...",
|
|
12
|
-
"help": "API key from memoryrelay.
|
|
12
|
+
"help": "API key from memoryrelay.ai (or use ${MEMORYRELAY_API_KEY} env var)"
|
|
13
13
|
},
|
|
14
14
|
"agentId": {
|
|
15
15
|
"label": "Agent ID",
|
|
@@ -22,6 +22,17 @@
|
|
|
22
22
|
"advanced": true,
|
|
23
23
|
"help": "MemoryRelay API endpoint (or use ${MEMORYRELAY_API_URL} env var)"
|
|
24
24
|
},
|
|
25
|
+
"defaultProject": {
|
|
26
|
+
"label": "Default Project",
|
|
27
|
+
"placeholder": "my-api",
|
|
28
|
+
"help": "Default project slug for scoping sessions, decisions, and memories"
|
|
29
|
+
},
|
|
30
|
+
"enabledTools": {
|
|
31
|
+
"label": "Enabled Tools",
|
|
32
|
+
"placeholder": "memory,entity,agent,session,decision,pattern,project,health",
|
|
33
|
+
"advanced": true,
|
|
34
|
+
"help": "Comma-separated list of tool groups to enable (default: all)"
|
|
35
|
+
},
|
|
25
36
|
"autoCapture": {
|
|
26
37
|
"label": "Auto-Capture",
|
|
27
38
|
"help": "Automatically capture important information from conversations"
|
|
@@ -54,6 +65,14 @@
|
|
|
54
65
|
"type": "string",
|
|
55
66
|
"default": "https://api.memoryrelay.net"
|
|
56
67
|
},
|
|
68
|
+
"defaultProject": {
|
|
69
|
+
"type": "string",
|
|
70
|
+
"description": "Default project slug for scoping sessions, decisions, and memories"
|
|
71
|
+
},
|
|
72
|
+
"enabledTools": {
|
|
73
|
+
"type": "string",
|
|
74
|
+
"description": "Comma-separated tool groups to enable: memory, entity, agent, session, decision, pattern, project, health, or 'all' (default: all)"
|
|
75
|
+
},
|
|
57
76
|
"autoCapture": {
|
|
58
77
|
"type": "boolean",
|
|
59
78
|
"default": false
|
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 -
|
|
3
|
+
"version": "0.7.0",
|
|
4
|
+
"description": "OpenClaw memory plugin for MemoryRelay API - sessions, decisions, patterns, projects & semantic search",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|
|
7
7
|
"scripts": {
|