-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
33 lines (33 loc) · 1.14 KB
/
openclaw.plugin.json
File metadata and controls
33 lines (33 loc) · 1.14 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
{
"id": "lucid-context-engine",
"description": "Retrieval-augmented context assembly via QMD workspace search. Automatically injects relevant knowledge on every turn.",
"uiHints": {
"topK": {
"label": "Top K Results",
"help": "Maximum number of QMD results to inject per turn (default: 5)"
},
"threshold": {
"label": "Salience Threshold",
"help": "Minimum salience score to include a result (0.0-1.0, default: 0.3)"
},
"qmdShimPath": {
"label": "QMD Shim Path",
"help": "Path to qmd-shim.js (default: auto-detected from USERPROFILE/clawd/tools/qmd-shim.js)"
},
"timeoutMs": {
"label": "Search Timeout (ms)",
"help": "Max milliseconds to wait for QMD search before falling back (default: 5000)"
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": { "type": "boolean" },
"topK": { "type": "integer", "minimum": 1, "maximum": 20 },
"threshold": { "type": "number", "minimum": 0, "maximum": 1 },
"qmdShimPath": { "type": "string" },
"timeoutMs": { "type": "integer", "minimum": 100 }
}
}
}