-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
28 lines (28 loc) · 982 Bytes
/
openclaw.plugin.json
File metadata and controls
28 lines (28 loc) · 982 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
28
{
"id": "byterover",
"kind": "context-engine",
"name": "ByteRover",
"description": "ByteRover context engine — curates and queries conversation context via brv CLI",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"brvPath": {
"type": "string",
"description": "Path to the brv CLI binary. Defaults to 'brv' (resolved from PATH)."
},
"queryTimeoutMs": {
"type": "number",
"description": "Timeout in milliseconds for brv query calls. Defaults to 12000. Note: effective assemble deadline is capped at 10000 ms to stay within the agent ready timeout."
},
"curateTimeoutMs": {
"type": "number",
"description": "Timeout in milliseconds for brv curate calls. Defaults to 60000."
},
"cwd": {
"type": "string",
"description": "Working directory for brv commands. Must be a project with .brv/ initialized."
}
}
}
}