-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathclawdbot.plugin.json
More file actions
34 lines (34 loc) · 1.09 KB
/
clawdbot.plugin.json
File metadata and controls
34 lines (34 loc) · 1.09 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
{
"id": "openclaw-swarm",
"name": "Claw-Swarm V8.2",
"description": "Signal-Mesh swarm intelligence engine — 7-layer architecture, MeshNode signal-field substrate, 14-discipline bio-inspired orchestration",
"version": "8.2.0",
"configSchema": {
"type": "object",
"additionalProperties": true,
"properties": {
"dbPath": {
"type": "string",
"description": "Path to the SQLite database file"
},
"architecture": {
"type": "object",
"description": "Architecture settings",
"properties": {
"mode": { "type": "string", "default": "hybrid" },
"workerPoolSize": { "type": "number", "default": 4 },
"ipcTimeoutMs": { "type": "number", "default": 5000 },
"coreRestartMaxRetries": { "type": "number", "default": 3 }
}
},
"dashboard": {
"type": "object",
"description": "Dashboard service settings",
"properties": {
"enabled": { "type": "boolean", "default": false },
"port": { "type": "number", "default": 19100 }
}
}
}
}
}