forked from andeya/openclaw-cursor-brain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
76 lines (76 loc) · 2.67 KB
/
openclaw.plugin.json
File metadata and controls
76 lines (76 loc) · 2.67 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"id": "openclaw-cursor-brain",
"name": "Cursor Brain",
"description": "Use Cursor Agent as the AI brain for OpenClaw via MCP",
"skills": [
"./skills"
],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"cursorPath": {
"type": "string",
"description": "Path to cursor agent binary. Leave empty to auto-detect."
},
"outputFormat": {
"type": "string",
"enum": [
"stream-json",
"json"
],
"description": "Output format for cursor-agent. Auto-detected if not set. Use 'stream-json' for streaming + thinking blocks, 'json' for batch."
},
"proxyPort": {
"type": "number",
"default": 18790,
"description": "Port for the local streaming proxy (OpenAI-compatible). Default 18790."
},
"requestTimeout": {
"type": "number",
"default": 300000,
"description": "Per-request timeout in ms. Min 60000. Proxy reads from openclaw.json. Preserved on upgrade."
},
"degradedTimeout": {
"type": "number",
"default": 300000,
"description": "Timeout in ms when already degraded. Proxy reads from openclaw.json."
},
"maxConsecutiveFailures": {
"type": "number",
"default": 8,
"description": "Consecutive failure threshold before proxy self-exits. Proxy reads from openclaw.json."
},
"maxConsecutiveTimeouts": {
"type": "number",
"default": 5,
"description": "Consecutive timeout threshold before proxy self-exits. Proxy reads from openclaw.json."
},
"streamResolveGraceMs": {
"type": "number",
"default": 5000,
"description": "Grace period in ms after killing child before returning 503. Proxy reads from openclaw.json."
},
"instantResult": {
"type": "boolean",
"default": true,
"description": "Send batch results instantly. Proxy reads from openclaw.json."
},
"forwardThinking": {
"type": "string",
"enum": [
"off",
"content",
"reasoning_content"
],
"default": "content",
"description": "How to stream Cursor's thinking output. off: drop (not sent). content: send as normal content, markdown blockquote + \"---\" before reply (OpenClaw streaming cards). reasoning_content: send in the reasoning_content field (OpenAI-style). Proxy reads from openclaw.json."
},
"streamSpeed": {
"type": "number",
"default": 200,
"description": "Chunked streaming chars/sec when instantResult is false. Proxy reads from openclaw.json."
}
}
}
}