@oisincoveney/pipeline 1.29.3 → 1.29.4
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/config/schemas.d.ts +2 -2
- package/package.json +1 -1
package/dist/config/schemas.d.ts
CHANGED
|
@@ -310,6 +310,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
310
310
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
311
311
|
timeout_ms: z.ZodOptional<z.ZodNumber>;
|
|
312
312
|
tools: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
313
|
+
task: "task";
|
|
313
314
|
read: "read";
|
|
314
315
|
list: "list";
|
|
315
316
|
grep: "grep";
|
|
@@ -317,7 +318,6 @@ declare const configSchema: z.ZodObject<{
|
|
|
317
318
|
bash: "bash";
|
|
318
319
|
edit: "edit";
|
|
319
320
|
write: "write";
|
|
320
|
-
task: "task";
|
|
321
321
|
}>>>;
|
|
322
322
|
}, z.core.$strict>>>;
|
|
323
323
|
runner_command: z.ZodDefault<z.ZodObject<{
|
|
@@ -369,6 +369,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
369
369
|
rules: z.ZodOptional<z.ZodBoolean>;
|
|
370
370
|
skills: z.ZodOptional<z.ZodBoolean>;
|
|
371
371
|
tools: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
372
|
+
task: "task";
|
|
372
373
|
read: "read";
|
|
373
374
|
list: "list";
|
|
374
375
|
grep: "grep";
|
|
@@ -376,7 +377,6 @@ declare const configSchema: z.ZodObject<{
|
|
|
376
377
|
bash: "bash";
|
|
377
378
|
edit: "edit";
|
|
378
379
|
write: "write";
|
|
379
|
-
task: "task";
|
|
380
380
|
}>>>;
|
|
381
381
|
}, z.core.$strict>;
|
|
382
382
|
command: z.ZodOptional<z.ZodString>;
|
package/package.json
CHANGED
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"prepack": "bun run build:cli"
|
|
124
124
|
},
|
|
125
125
|
"type": "module",
|
|
126
|
-
"version": "1.29.
|
|
126
|
+
"version": "1.29.4",
|
|
127
127
|
"description": "Config-driven multi-agent pipeline runner for repository work",
|
|
128
128
|
"main": "./dist/index.js",
|
|
129
129
|
"types": "./dist/index.d.ts",
|