-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
45 lines (45 loc) · 1.48 KB
/
openclaw.plugin.json
File metadata and controls
45 lines (45 loc) · 1.48 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
{
"id": "alive",
"name": "Alive Context",
"kind": "context-engine",
"configSchema": {
"type": "object",
"properties": {
"worldPath": { "type": "string", "default": "~/.openclaw/workspace/world" },
"mode": { "type": "string", "enum": ["skills", "companion", "engine"], "default": "skills" },
"topicDetection": { "type": "boolean", "default": true },
"consolidation": {
"type": "object",
"properties": {
"schedule": { "type": "string", "default": "0 2 * * *" },
"sources": { "type": "array", "default": ["memory"] },
"autoCreateCapsules": { "type": "boolean", "default": true },
"synthesisThreshold": { "type": "number", "default": 10 }
}
},
"engine": {
"type": "object",
"properties": {
"freshTailCount": { "type": "number", "default": 32 },
"archive": { "type": "boolean", "default": true },
"extractionModel": { "type": "string" }
}
},
"tidy": {
"type": "object",
"properties": {
"staleCapsuleDays": { "type": "number", "default": 30 },
"healthReport": { "type": "boolean", "default": true }
}
}
}
},
"uiHints": {
"worldPath": { "label": "World Path", "placeholder": "~/.openclaw/workspace/world" },
"mode": { "label": "Integration Mode", "placeholder": "skills | companion | engine" }
},
"hooks": {
"allowPromptInjection": true
},
"skills": ["./skills"]
}