-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclawdbot.plugin.json
More file actions
25 lines (25 loc) · 1.09 KB
/
clawdbot.plugin.json
File metadata and controls
25 lines (25 loc) · 1.09 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
{
"id": "supermemory",
"name": "Supermemory",
"version": "1.0.0",
"description": "Supermemory integration for Clawdbot long-term memory",
"kind": "memory",
"entry": "./index.ts",
"configSchema": {
"type": "object",
"properties": {
"apiKey": { "type": "string", "description": "Supermemory API key" },
"mode": { "type": "string", "enum": ["primary", "tandem", "off"], "default": "tandem" },
"containerTag": { "type": "string", "description": "Optional namespace prefix for memories" },
"containerScope": {
"type": "string",
"enum": ["agent", "session"],
"default": "agent",
"description": "Memory isolation scope. 'agent' shares memories across all sessions (personal assistant). 'session' isolates memories per conversation (multi-group privacy)."
},
"autoRecall": { "type": "boolean", "default": true },
"threshold": { "type": "number", "minimum": 0, "maximum": 1, "default": 0.5 },
"baseUrl": { "type": "string", "default": "https://api.supermemory.ai", "description": "Supermemory API base URL" }
}
}
}