-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
138 lines (137 loc) · 4.71 KB
/
openclaw.plugin.json
File metadata and controls
138 lines (137 loc) · 4.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"id": "openclaw-redis-agent-memory",
"kind": "memory",
"uiHints": {
"serverUrl": {
"label": "Server URL",
"placeholder": "http://localhost:8000",
"help": "Base URL of the agent-memory-server (or use ${AGENT_MEMORY_SERVER_URL})"
},
"apiKey": {
"label": "API Key",
"sensitive": true,
"placeholder": "your-api-key",
"help": "API key for authentication (optional, or use ${AGENT_MEMORY_API_KEY})"
},
"bearerToken": {
"label": "Bearer Token",
"sensitive": true,
"placeholder": "your-bearer-token",
"help": "Bearer token for authentication (optional)",
"advanced": true
},
"namespace": {
"label": "Namespace",
"placeholder": "default",
"help": "Namespace for organizing memories (isolates memories by project/app)"
},
"userId": {
"label": "User ID",
"placeholder": "default",
"help": "User ID for memory isolation (each user gets their own memories)"
},
"timeout": {
"label": "Timeout (ms)",
"placeholder": "30000",
"advanced": true
},
"autoCapture": {
"label": "Auto-Capture",
"help": "Automatically capture important information from conversations"
},
"autoRecall": {
"label": "Auto-Recall",
"help": "Automatically inject relevant memories into context"
},
"minScore": {
"label": "Minimum Score",
"placeholder": "0.3",
"help": "Minimum similarity score for memory recall (0-1)",
"advanced": true
},
"recallLimit": {
"label": "Recall Limit",
"placeholder": "3",
"help": "Maximum number of memories to recall",
"advanced": true
},
"extractionStrategy": {
"label": "Extraction Strategy",
"placeholder": "discrete",
"help": "How to extract memories: discrete (semantic/episodic), summary, preferences, or custom",
"advanced": true
},
"customPrompt": {
"label": "Custom Extraction Prompt",
"placeholder": "Extract action items and decisions from this conversation.",
"help": "Custom prompt for memory extraction (only used with 'custom' strategy)",
"advanced": true
},
"summaryViewName": {
"label": "Summary View Name",
"placeholder": "agent_user_summary",
"help": "Name for the rolling summary view of long-term memories",
"advanced": true
},
"summaryTimeWindowDays": {
"label": "Summary Time Window (days)",
"placeholder": "30",
"help": "Rolling window in days for the summary view (only recent memories included)",
"advanced": true
},
"summaryGroupBy": {
"label": "Summary Group By",
"placeholder": "user_id",
"help": "Fields to partition summaries by: user_id, namespace, or both",
"advanced": true
},
"recallDescription": {
"label": "Recall Tool Description",
"placeholder": "Search through long-term memories. Use when you need context about user preferences, past decisions, or previously discussed topics.",
"help": "Description shown to the LLM for the memory_recall tool",
"advanced": true
},
"storeDescription": {
"label": "Store Tool Description",
"placeholder": "Save important information in long-term memory. Use for preferences, facts, decisions.",
"help": "Description shown to the LLM for the memory_store tool",
"advanced": true
},
"forgetDescription": {
"label": "Forget Tool Description",
"placeholder": "Delete specific memories. GDPR-compliant.",
"help": "Description shown to the LLM for the memory_forget tool",
"advanced": true
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"serverUrl": { "type": "string" },
"apiKey": { "type": "string" },
"bearerToken": { "type": "string" },
"namespace": { "type": "string" },
"userId": { "type": "string" },
"timeout": { "type": "number" },
"autoCapture": { "type": "boolean" },
"autoRecall": { "type": "boolean" },
"minScore": { "type": "number", "minimum": 0, "maximum": 1 },
"recallLimit": { "type": "number", "minimum": 1 },
"extractionStrategy": {
"type": "string",
"enum": ["discrete", "summary", "preferences", "custom"]
},
"customPrompt": { "type": "string" },
"summaryViewName": { "type": "string" },
"summaryTimeWindowDays": { "type": "number", "minimum": 1 },
"summaryGroupBy": {
"type": "array",
"items": { "type": "string", "enum": ["user_id", "namespace"] }
},
"recallDescription": { "type": "string" },
"storeDescription": { "type": "string" },
"forgetDescription": { "type": "string" }
}
}
}