@oisincoveney/pipeline 1.22.1 → 1.22.2
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.d.ts +2 -2
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -461,6 +461,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
461
461
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
462
462
|
timeout_ms: z.ZodOptional<z.ZodNumber>;
|
|
463
463
|
tools: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
464
|
+
task: "task";
|
|
464
465
|
read: "read";
|
|
465
466
|
list: "list";
|
|
466
467
|
grep: "grep";
|
|
@@ -468,7 +469,6 @@ declare const configSchema: z.ZodObject<{
|
|
|
468
469
|
bash: "bash";
|
|
469
470
|
edit: "edit";
|
|
470
471
|
write: "write";
|
|
471
|
-
task: "task";
|
|
472
472
|
}>>>;
|
|
473
473
|
}, z.core.$strict>>>;
|
|
474
474
|
runner_job: z.ZodDefault<z.ZodObject<{
|
|
@@ -520,6 +520,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
520
520
|
rules: z.ZodOptional<z.ZodBoolean>;
|
|
521
521
|
skills: z.ZodOptional<z.ZodBoolean>;
|
|
522
522
|
tools: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
523
|
+
task: "task";
|
|
523
524
|
read: "read";
|
|
524
525
|
list: "list";
|
|
525
526
|
grep: "grep";
|
|
@@ -527,7 +528,6 @@ declare const configSchema: z.ZodObject<{
|
|
|
527
528
|
bash: "bash";
|
|
528
529
|
edit: "edit";
|
|
529
530
|
write: "write";
|
|
530
|
-
task: "task";
|
|
531
531
|
}>>>;
|
|
532
532
|
}, z.core.$strict>;
|
|
533
533
|
command: z.ZodOptional<z.ZodString>;
|
package/package.json
CHANGED
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"prepack": "bun run build:cli"
|
|
112
112
|
},
|
|
113
113
|
"type": "module",
|
|
114
|
-
"version": "1.22.
|
|
114
|
+
"version": "1.22.2",
|
|
115
115
|
"description": "Config-driven multi-agent pipeline runner for repository work",
|
|
116
116
|
"main": "./dist/index.js",
|
|
117
117
|
"types": "./dist/index.d.ts",
|