opencode-conductor-plugin 1.19.1 → 1.20.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 CHANGED
@@ -112,29 +112,23 @@ const ConductorPlugin = async (ctx) => {
112
112
  mode: "primary",
113
113
  prompt: conductorPrompt,
114
114
  permission: {
115
- "read": {
115
+ read: {
116
116
  "*": "allow",
117
117
  "*.env": "deny",
118
118
  "*.env.*": "deny",
119
- "*.env.example": "allow"
119
+ "*.env.example": "allow",
120
120
  },
121
- bash: "allow",
122
121
  edit: "allow",
122
+ bash: "allow",
123
+ grep: "allow",
124
+ glob: "allow",
125
+ list: "allow",
126
+ lsp: "allow",
127
+ todoread: "allow",
128
+ todowrite: "allow",
123
129
  webfetch: "allow",
124
130
  external_directory: "deny",
125
- list: "allow",
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,
131
+ doom_loop: "ask",
138
132
  },
139
133
  },
140
134
  conductor_implementer: {
@@ -142,41 +136,27 @@ const ConductorPlugin = async (ctx) => {
142
136
  mode: "primary",
143
137
  prompt: implementerPrompt,
144
138
  permission: {
145
- "read": {
139
+ read: {
146
140
  "*": "allow",
147
141
  "*.env": "deny",
148
142
  "*.env.*": "deny",
149
- "*.env.example": "allow"
143
+ "*.env.example": "allow",
150
144
  },
151
- bash: "allow",
152
145
  edit: "allow",
153
- webfetch: "allow",
154
- external_directory: "deny",
146
+ bash: "allow",
147
+ grep: "allow",
148
+ glob: "allow",
155
149
  list: "allow",
150
+ lsp: "allow",
151
+ todoread: "allow",
152
+ todowrite: "allow",
153
+ webfetch: "allow",
156
154
  "conductor_delegate": "allow",
157
155
  "conductor_bg_task": "allow",
158
156
  "conductor_bg_output": "allow",
159
157
  "conductor_bg_cancel": "allow",
160
- grep: "allow",
161
- glob: "allow",
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,
158
+ external_directory: "deny",
159
+ doom_loop: "ask",
180
160
  },
181
161
  },
182
162
  };
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-conductor-plugin",
3
- "version": "1.19.1",
3
+ "version": "1.20.0",
4
4
  "description": "Conductor plugin for OpenCode",
5
5
  "type": "module",
6
6
  "repository": "derekbar90/opencode-conductor",