forked from laurentenhoor/devclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
55 lines (55 loc) · 1.7 KB
/
openclaw.plugin.json
File metadata and controls
55 lines (55 loc) · 1.7 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
{
"id": "devclaw",
"name": "DevClaw",
"description": "Multi-project dev/qa pipeline orchestration for OpenClaw. Developer tiers, atomic task management, session health, and audit logging.",
"configSchema": {
"type": "object",
"properties": {
"models": {
"type": "object",
"description": "Model mapping per role and tier",
"properties": {
"dev": {
"type": "object",
"description": "Developer tier models",
"properties": {
"junior": { "type": "string" },
"medior": { "type": "string" },
"senior": { "type": "string" }
}
},
"qa": {
"type": "object",
"description": "QA tier models",
"properties": {
"reviewer": { "type": "string" },
"tester": { "type": "string" }
}
}
}
},
"projectExecution": {
"type": "string",
"enum": ["parallel", "sequential"],
"description": "Project execution mode. Default: parallel."
},
"notifications": {
"type": "object",
"description": "Per-event-type notification toggles. All default to true — set to false to suppress.",
"properties": {
"workerStart": { "type": "boolean" },
"workerComplete": { "type": "boolean" }
}
},
"work_heartbeat": {
"type": "object",
"description": "Token-free interval-based heartbeat service.",
"properties": {
"enabled": { "type": "boolean" },
"intervalSeconds": { "type": "number" },
"maxPickupsPerTick": { "type": "number" }
}
}
}
}
}