opencode-conductor-plugin 1.20.0 → 1.21.1
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -112,6 +112,7 @@ const ConductorPlugin = async (ctx) => {
|
|
|
112
112
|
mode: "primary",
|
|
113
113
|
prompt: conductorPrompt,
|
|
114
114
|
permission: {
|
|
115
|
+
'*': 'allow',
|
|
115
116
|
read: {
|
|
116
117
|
"*": "allow",
|
|
117
118
|
"*.env": "deny",
|
|
@@ -122,7 +123,6 @@ const ConductorPlugin = async (ctx) => {
|
|
|
122
123
|
bash: "allow",
|
|
123
124
|
grep: "allow",
|
|
124
125
|
glob: "allow",
|
|
125
|
-
list: "allow",
|
|
126
126
|
lsp: "allow",
|
|
127
127
|
todoread: "allow",
|
|
128
128
|
todowrite: "allow",
|
|
@@ -136,6 +136,7 @@ const ConductorPlugin = async (ctx) => {
|
|
|
136
136
|
mode: "primary",
|
|
137
137
|
prompt: implementerPrompt,
|
|
138
138
|
permission: {
|
|
139
|
+
'*': 'allow',
|
|
139
140
|
read: {
|
|
140
141
|
"*": "allow",
|
|
141
142
|
"*.env": "deny",
|
|
@@ -146,7 +147,6 @@ const ConductorPlugin = async (ctx) => {
|
|
|
146
147
|
bash: "allow",
|
|
147
148
|
grep: "allow",
|
|
148
149
|
glob: "allow",
|
|
149
|
-
list: "allow",
|
|
150
150
|
lsp: "allow",
|
|
151
151
|
todoread: "allow",
|
|
152
152
|
todowrite: "allow",
|