forked from rohitg00/agentmemory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
27 lines (27 loc) · 967 Bytes
/
Copy pathopenclaw.plugin.json
File metadata and controls
27 lines (27 loc) · 967 Bytes
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
{
"id": "agentmemory",
"kind": "memory",
"name": "agentmemory",
"description": "Persistent cross-session memory for OpenClaw via agentmemory.",
"version": "0.9.4",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": { "type": "boolean" },
"base_url": { "type": "string" },
"token_budget": { "type": "number" },
"min_confidence": { "type": "number" },
"fallback_on_error": { "type": "boolean" },
"timeout_ms": { "type": "number" }
}
},
"uiHints": {
"enabled": { "label": "Enabled" },
"base_url": { "label": "Base URL", "help": "agentmemory REST server base URL" },
"token_budget": { "label": "Token Budget", "help": "Approximate context budget to inject before the agent starts" },
"min_confidence": { "label": "Min Confidence" },
"fallback_on_error": { "label": "Fallback On Error" },
"timeout_ms": { "label": "Timeout (ms)" }
}
}