@oisincoveney/pipeline 1.22.5 → 1.22.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.
Files changed (2) hide show
  1. package/dist/config.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/config.d.ts CHANGED
@@ -461,7 +461,6 @@ 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";
465
464
  read: "read";
466
465
  list: "list";
467
466
  grep: "grep";
@@ -469,6 +468,7 @@ declare const configSchema: z.ZodObject<{
469
468
  bash: "bash";
470
469
  edit: "edit";
471
470
  write: "write";
471
+ task: "task";
472
472
  }>>>;
473
473
  }, z.core.$strict>>>;
474
474
  runner_job: z.ZodDefault<z.ZodObject<{
@@ -520,7 +520,6 @@ 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";
524
523
  read: "read";
525
524
  list: "list";
526
525
  grep: "grep";
@@ -528,6 +527,7 @@ declare const configSchema: z.ZodObject<{
528
527
  bash: "bash";
529
528
  edit: "edit";
530
529
  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.5",
114
+ "version": "1.22.6",
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",