-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
129 lines (129 loc) · 4.12 KB
/
openclaw.plugin.json
File metadata and controls
129 lines (129 loc) · 4.12 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"id": "clawspec",
"name": "ClawSpec",
"description": "OpenSpec-aware project orchestration for OpenClaw channels",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable or disable the ClawSpec plugin"
},
"allowedChannels": {
"type": "array",
"description": "Optional list of channel ids allowed to use /clawspec",
"items": {
"type": "string"
}
},
"maxAutoContinueTurns": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"description": "Deprecated no-op retained for backward compatibility with older configs"
},
"maxNoProgressTurns": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"description": "Deprecated no-op retained for backward compatibility with older configs"
},
"openSpecTimeoutMs": {
"type": "integer",
"minimum": 5000,
"maximum": 600000,
"description": "Timeout in milliseconds for each OpenSpec CLI invocation"
},
"workerWaitTimeoutMs": {
"type": "integer",
"minimum": 10000,
"maximum": 3600000,
"description": "Deprecated no-op retained for backward compatibility with older configs"
},
"workerAgentId": {
"type": "string",
"description": "ACP agent id used for background planning and implementation"
},
"workerBackendId": {
"type": "string",
"description": "Optional ACP backend id used for background worker sessions"
},
"watcherPollIntervalMs": {
"type": "integer",
"minimum": 1000,
"maximum": 60000,
"description": "Background watcher recovery poll interval in milliseconds"
},
"subagentLane": {
"type": "string",
"description": "Deprecated no-op retained for backward compatibility with older configs"
},
"archiveDirName": {
"type": "string",
"description": "Directory name used under .openclaw/clawspec/ for archived runs"
},
"defaultWorkspace": {
"type": "string",
"description": "Base directory used for default project browsing and relative /clawspec path inputs"
}
}
},
"uiHints": {
"enabled": {
"label": "Enable ClawSpec",
"help": "Enable or disable the ClawSpec plugin"
},
"allowedChannels": {
"label": "Allowed Channels",
"help": "Optional list of channel ids allowed to use /clawspec"
},
"maxAutoContinueTurns": {
"label": "Deprecated Auto Turns",
"help": "Deprecated no-op retained for backward compatibility"
},
"maxNoProgressTurns": {
"label": "Deprecated No Progress",
"help": "Deprecated no-op retained for backward compatibility"
},
"openSpecTimeoutMs": {
"label": "OpenSpec Timeout",
"help": "Timeout in milliseconds for each OpenSpec command",
"advanced": true
},
"workerWaitTimeoutMs": {
"label": "Deprecated Worker Timeout",
"help": "Deprecated no-op retained for backward compatibility",
"advanced": true
},
"workerAgentId": {
"label": "Worker Agent",
"help": "ACP agent id used for background planning and implementation turns",
"advanced": true
},
"workerBackendId": {
"label": "Worker ACP Backend",
"help": "Optional ACP backend id used for background worker sessions",
"advanced": true
},
"watcherPollIntervalMs": {
"label": "Watcher Poll Interval",
"help": "Background watcher recovery poll interval in milliseconds",
"advanced": true
},
"subagentLane": {
"label": "Deprecated Lane Hint",
"help": "Deprecated no-op retained for backward compatibility",
"advanced": true
},
"archiveDirName": {
"label": "Archive Folder",
"help": "Directory name used for archived run bundles",
"advanced": true
},
"defaultWorkspace": {
"label": "Default Workspace",
"help": "Base directory used for `/clawspec workspace` and `/clawspec use`"
}
}
}