opencode-conductor-plugin 1.19.1 → 1.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +23 -41
- package/dist/prompts/agent/conductor.md +0 -14
- package/dist/prompts/agent/implementer.md +0 -18
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -112,29 +112,24 @@ const ConductorPlugin = async (ctx) => {
|
|
|
112
112
|
mode: "primary",
|
|
113
113
|
prompt: conductorPrompt,
|
|
114
114
|
permission: {
|
|
115
|
-
|
|
115
|
+
'*': 'allow',
|
|
116
|
+
read: {
|
|
116
117
|
"*": "allow",
|
|
117
118
|
"*.env": "deny",
|
|
118
119
|
"*.env.*": "deny",
|
|
119
|
-
"*.env.example": "allow"
|
|
120
|
+
"*.env.example": "allow",
|
|
120
121
|
},
|
|
121
|
-
bash: "allow",
|
|
122
122
|
edit: "allow",
|
|
123
|
+
bash: "allow",
|
|
124
|
+
grep: "allow",
|
|
125
|
+
glob: "allow",
|
|
126
|
+
list: "allow",
|
|
127
|
+
lsp: "allow",
|
|
128
|
+
todoread: "allow",
|
|
129
|
+
todowrite: "allow",
|
|
123
130
|
webfetch: "allow",
|
|
124
131
|
external_directory: "deny",
|
|
125
|
-
|
|
126
|
-
},
|
|
127
|
-
tools: {
|
|
128
|
-
bash: true,
|
|
129
|
-
edit: true,
|
|
130
|
-
write: true,
|
|
131
|
-
read: true,
|
|
132
|
-
grep: true,
|
|
133
|
-
glob: true,
|
|
134
|
-
list: true,
|
|
135
|
-
todowrite: true,
|
|
136
|
-
todoread: true,
|
|
137
|
-
webfetch: true,
|
|
132
|
+
doom_loop: "ask",
|
|
138
133
|
},
|
|
139
134
|
},
|
|
140
135
|
conductor_implementer: {
|
|
@@ -142,41 +137,28 @@ const ConductorPlugin = async (ctx) => {
|
|
|
142
137
|
mode: "primary",
|
|
143
138
|
prompt: implementerPrompt,
|
|
144
139
|
permission: {
|
|
145
|
-
|
|
140
|
+
'*': 'allow',
|
|
141
|
+
read: {
|
|
146
142
|
"*": "allow",
|
|
147
143
|
"*.env": "deny",
|
|
148
144
|
"*.env.*": "deny",
|
|
149
|
-
"*.env.example": "allow"
|
|
145
|
+
"*.env.example": "allow",
|
|
150
146
|
},
|
|
151
|
-
bash: "allow",
|
|
152
147
|
edit: "allow",
|
|
153
|
-
|
|
154
|
-
|
|
148
|
+
bash: "allow",
|
|
149
|
+
grep: "allow",
|
|
150
|
+
glob: "allow",
|
|
155
151
|
list: "allow",
|
|
152
|
+
lsp: "allow",
|
|
153
|
+
todoread: "allow",
|
|
154
|
+
todowrite: "allow",
|
|
155
|
+
webfetch: "allow",
|
|
156
156
|
"conductor_delegate": "allow",
|
|
157
157
|
"conductor_bg_task": "allow",
|
|
158
158
|
"conductor_bg_output": "allow",
|
|
159
159
|
"conductor_bg_cancel": "allow",
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
todowrite: "allow",
|
|
163
|
-
todoread: "allow",
|
|
164
|
-
},
|
|
165
|
-
tools: {
|
|
166
|
-
bash: true,
|
|
167
|
-
edit: true,
|
|
168
|
-
write: true,
|
|
169
|
-
read: true,
|
|
170
|
-
grep: true,
|
|
171
|
-
glob: true,
|
|
172
|
-
list: true,
|
|
173
|
-
todowrite: true,
|
|
174
|
-
todoread: true,
|
|
175
|
-
webfetch: true,
|
|
176
|
-
"conductor_delegate": true,
|
|
177
|
-
"conductor_bg_task": true,
|
|
178
|
-
"conductor_bg_output": true,
|
|
179
|
-
"conductor_bg_cancel": true,
|
|
160
|
+
external_directory: "deny",
|
|
161
|
+
doom_loop: "ask",
|
|
180
162
|
},
|
|
181
163
|
},
|
|
182
164
|
};
|
|
@@ -1,20 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Spec-Driven Development Architect. Manages the project lifecycle using the Conductor protocol.
|
|
3
3
|
mode: primary
|
|
4
|
-
permission:
|
|
5
|
-
bash: allow
|
|
6
|
-
edit: allow
|
|
7
|
-
write: allow
|
|
8
|
-
read: allow
|
|
9
|
-
grep: allow
|
|
10
|
-
glob: allow
|
|
11
|
-
list: allow
|
|
12
|
-
lsp: allow
|
|
13
|
-
patch: allow
|
|
14
|
-
skill: allow
|
|
15
|
-
todo_write: allow
|
|
16
|
-
todo_read: allow
|
|
17
|
-
webfetch: allow
|
|
18
4
|
---
|
|
19
5
|
# Conductor Agent
|
|
20
6
|
|
|
@@ -1,24 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Spec-Driven Implementation Specialist. Executes track plans following the Conductor protocol.
|
|
3
3
|
mode: primary
|
|
4
|
-
permission:
|
|
5
|
-
bash: allow
|
|
6
|
-
edit: allow
|
|
7
|
-
write: allow
|
|
8
|
-
read: allow
|
|
9
|
-
grep: allow
|
|
10
|
-
glob: allow
|
|
11
|
-
list: allow
|
|
12
|
-
lsp: allow
|
|
13
|
-
patch: allow
|
|
14
|
-
skill: allow
|
|
15
|
-
todo_write: allow
|
|
16
|
-
todo_read: allow
|
|
17
|
-
webfetch: allow
|
|
18
|
-
"conductor_delegate": allow
|
|
19
|
-
"conductor_background_task": allow
|
|
20
|
-
"conductor_background_output": allow
|
|
21
|
-
"conductor_background_cancel": allow
|
|
22
4
|
---
|
|
23
5
|
# Conductor Implementer Agent
|
|
24
6
|
|