-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
62 lines (62 loc) · 1.86 KB
/
openclaw.plugin.json
File metadata and controls
62 lines (62 loc) · 1.86 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
{
"name": "@harper/openclaw-memory",
"version": "0.1.0",
"description": "Distributed long-term agent memory backed by Harper Cortex. Server-side embeddings, multi-agent sharing, zero API keys required.",
"kind": "memory",
"entrypoint": "dist/index.js",
"repository": "https://github.com/HarperFast/openclaw-memory-harper",
"author": "Harper",
"license": "MIT",
"configuration": {
"instanceUrl": {
"type": "string",
"required": true,
"description": "Harper Cortex instance URL (e.g., https://my-instance.harpercloud.com)"
},
"token": {
"type": "string",
"required": false,
"description": "Optional authentication token for Cortex instance"
},
"table": {
"type": "string",
"default": "agent_memory",
"description": "Cortex table name for memory storage"
},
"schema": {
"type": "string",
"default": "data",
"description": "Cortex schema/database name"
},
"agentId": {
"type": "string",
"required": false,
"description": "Optional agent identifier for multi-agent isolation"
},
"recallLimit": {
"type": "number",
"default": 3,
"description": "Maximum memories to retrieve during auto-recall"
},
"recallThreshold": {
"type": "number",
"default": 0.3,
"description": "Minimum similarity score (0-1) for auto-recall injection"
},
"captureLimit": {
"type": "number",
"default": 3,
"description": "Maximum facts to extract during auto-capture"
},
"dedupThreshold": {
"type": "number",
"default": 0.95,
"description": "Similarity threshold (0-1) for deduplication"
}
},
"capabilities": {
"hooks": ["before_agent_start", "agent_end"],
"tools": ["memory_recall", "memory_store", "memory_forget"],
"cli": ["memory stats", "memory search"]
}
}