-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
36 lines (36 loc) · 985 Bytes
/
openclaw.plugin.json
File metadata and controls
36 lines (36 loc) · 985 Bytes
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": "superpowers-bridge",
"name": "Superpowers Bridge",
"description": "Bridge to Superpowers workflow skills - auto-fetches from GitHub",
"version": "2.1.0",
"kind": "extension",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"default": true
},
"skillsRepo": {
"type": "string",
"default": "https://github.com/obra/superpowers.git",
"description": "GitHub repository URL for Superpowers skills"
},
"docsPath": {
"type": "string",
"default": "docs/superpowers"
},
"autoDetectCode": {
"type": "boolean",
"default": true,
"description": "Auto-detect code tasks and load relevant skills"
},
"autoUpdate": {
"type": "boolean",
"default": false,
"description": "Auto-update skills on plugin start (not recommended)"
}
}
}
}