opencode-plugin-flow 4.3.4 → 4.3.6
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/CHANGELOG.md +37 -0
- package/README.md +13 -5
- package/dist/adapters/opencode/tools.d.ts +14 -0
- package/dist/cli.js +71 -117
- package/dist/cli.js.map +2 -2
- package/dist/config-shared.d.ts +7 -0
- package/dist/index.js +374 -129
- package/dist/index.js.map +6 -6
- package/dist/runtime/api.d.ts +11 -0
- package/dist/runtime/schema.d.ts +119 -0
- package/dist/runtime/transitions.d.ts +66 -1
- package/package.json +2 -1
package/dist/config-shared.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export type FlowAgentConfig = {
|
|
|
10
10
|
description: string;
|
|
11
11
|
prompt: string;
|
|
12
12
|
hidden?: boolean;
|
|
13
|
+
model?: string;
|
|
13
14
|
permission?: FlowPermissionConfig;
|
|
14
15
|
};
|
|
15
16
|
export type FlowCommandConfig = {
|
|
@@ -158,6 +159,7 @@ export declare function createFlowCoreConfigEntries(): {
|
|
|
158
159
|
"flow_*": string;
|
|
159
160
|
flow_status: string;
|
|
160
161
|
};
|
|
162
|
+
model?: string;
|
|
161
163
|
mode: "subagent";
|
|
162
164
|
hidden: true;
|
|
163
165
|
description: string;
|
|
@@ -173,6 +175,7 @@ export declare function createFlowCoreConfigEntries(): {
|
|
|
173
175
|
"flow_*": string;
|
|
174
176
|
flow_status: string;
|
|
175
177
|
};
|
|
178
|
+
model?: string;
|
|
176
179
|
mode: "subagent";
|
|
177
180
|
hidden: true;
|
|
178
181
|
description: string;
|
|
@@ -188,6 +191,7 @@ export declare function createFlowCoreConfigEntries(): {
|
|
|
188
191
|
"flow_*": string;
|
|
189
192
|
flow_status: string;
|
|
190
193
|
};
|
|
194
|
+
model?: string;
|
|
191
195
|
mode: "subagent";
|
|
192
196
|
hidden: true;
|
|
193
197
|
description: string;
|
|
@@ -203,6 +207,7 @@ export declare function createFlowCoreConfigEntries(): {
|
|
|
203
207
|
"flow_*": string;
|
|
204
208
|
flow_status: string;
|
|
205
209
|
};
|
|
210
|
+
model?: string;
|
|
206
211
|
mode: "subagent";
|
|
207
212
|
hidden: true;
|
|
208
213
|
description: string;
|
|
@@ -218,6 +223,7 @@ export declare function createFlowCoreConfigEntries(): {
|
|
|
218
223
|
"flow_*": string;
|
|
219
224
|
flow_status: string;
|
|
220
225
|
};
|
|
226
|
+
model?: string;
|
|
221
227
|
mode: "subagent";
|
|
222
228
|
hidden: true;
|
|
223
229
|
description: string;
|
|
@@ -233,6 +239,7 @@ export declare function createFlowCoreConfigEntries(): {
|
|
|
233
239
|
"flow_*": string;
|
|
234
240
|
flow_status: string;
|
|
235
241
|
};
|
|
242
|
+
model?: string;
|
|
236
243
|
mode: "subagent";
|
|
237
244
|
hidden: true;
|
|
238
245
|
description: string;
|