@oisincoveney/pipeline 1.29.2 → 1.29.3

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.
@@ -310,7 +310,6 @@ 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";
314
313
  read: "read";
315
314
  list: "list";
316
315
  grep: "grep";
@@ -318,6 +317,7 @@ declare const configSchema: z.ZodObject<{
318
317
  bash: "bash";
319
318
  edit: "edit";
320
319
  write: "write";
320
+ task: "task";
321
321
  }>>>;
322
322
  }, z.core.$strict>>>;
323
323
  runner_command: z.ZodDefault<z.ZodObject<{
@@ -369,7 +369,6 @@ 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";
373
372
  read: "read";
374
373
  list: "list";
375
374
  grep: "grep";
@@ -377,6 +376,7 @@ declare const configSchema: z.ZodObject<{
377
376
  bash: "bash";
378
377
  edit: "edit";
379
378
  write: "write";
379
+ task: "task";
380
380
  }>>>;
381
381
  }, z.core.$strict>;
382
382
  command: z.ZodOptional<z.ZodString>;
package/dist/hooks.d.ts CHANGED
@@ -13,8 +13,8 @@ declare const hookResultSchema: z.ZodObject<{
13
13
  taskContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
14
14
  }, z.core.$strict>>;
15
15
  status: z.ZodEnum<{
16
- pass: "pass";
17
16
  fail: "fail";
17
+ pass: "pass";
18
18
  skip: "skip";
19
19
  }>;
20
20
  summary: 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.2",
126
+ "version": "1.29.3",
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",