-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
36 lines (36 loc) · 1.27 KB
/
openclaw.plugin.json
File metadata and controls
36 lines (36 loc) · 1.27 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
{
"id": "openstream",
"name": "OpenStream",
"description": "Ollama companion plugin with diagnostics, prompt guidance, and heuristic recommendations for OpenClaw.",
"skills": ["./skills"],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"promptGuidance": {
"type": "boolean",
"description": "When true, inject stable Ollama/open-source model guidance into system prompt space."
},
"streamingMode": {
"type": "string",
"enum": ["standard", "enhanced", "ultra"],
"description": "Preferred OpenStream streaming preset used by diagnostics and sample config output."
},
"enableMegaContext": {
"type": "boolean",
"description": "Whether diagnostics should recommend 2M-context behavior when model families support it."
},
"maxContextWindow": {
"type": "integer",
"minimum": 32768,
"maximum": 2097152,
"description": "Maximum context window OpenStream should recommend in generated config snippets."
},
"doctorDefaultProvider": {
"type": "string",
"enum": ["ollama", "openstream"],
"description": "Preferred provider label shown by doctor/sample-config output."
}
}
}
}