@oisincoveney/pipeline 1.23.2 → 1.23.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.
package/dist/config.d.ts CHANGED
@@ -371,8 +371,8 @@ declare const configSchema: z.ZodObject<{
371
371
  policy: z.ZodOptional<z.ZodObject<{
372
372
  commands: z.ZodOptional<z.ZodEnum<{
373
373
  allow: "allow";
374
- "trusted-only": "trusted-only";
375
374
  deny: "deny";
375
+ "trusted-only": "trusted-only";
376
376
  }>>;
377
377
  modules: z.ZodOptional<z.ZodEnum<{
378
378
  allow: "allow";
@@ -396,8 +396,8 @@ declare const configSchema: z.ZodObject<{
396
396
  }, z.core.$strict>>>;
397
397
  default_profile: z.ZodOptional<z.ZodString>;
398
398
  mode: z.ZodEnum<{
399
- hosted: "hosted";
400
399
  local: "local";
400
+ hosted: "hosted";
401
401
  }>;
402
402
  provider: z.ZodLiteral<"toolhive">;
403
403
  authorization_env: z.ZodDefault<z.ZodString>;
@@ -440,10 +440,10 @@ declare const configSchema: z.ZodObject<{
440
440
  }, z.core.$strict>>;
441
441
  output: z.ZodOptional<z.ZodObject<{
442
442
  format: z.ZodEnum<{
443
+ json_schema: "json_schema";
443
444
  text: "text";
444
445
  json: "json";
445
446
  jsonl: "jsonl";
446
- json_schema: "json_schema";
447
447
  }>;
448
448
  repair: z.ZodOptional<z.ZodObject<{
449
449
  enabled: z.ZodOptional<z.ZodBoolean>;
@@ -512,10 +512,10 @@ declare const configSchema: z.ZodObject<{
512
512
  disabled: "disabled";
513
513
  }>>>;
514
514
  output_formats: z.ZodOptional<z.ZodArray<z.ZodEnum<{
515
+ json_schema: "json_schema";
515
516
  text: "text";
516
517
  json: "json";
517
518
  jsonl: "jsonl";
518
- json_schema: "json_schema";
519
519
  }>>>;
520
520
  rules: z.ZodOptional<z.ZodBoolean>;
521
521
  skills: z.ZodOptional<z.ZodBoolean>;
@@ -534,9 +534,9 @@ declare const configSchema: z.ZodObject<{
534
534
  host_models: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
535
535
  model: z.ZodOptional<z.ZodString>;
536
536
  type: z.ZodEnum<{
537
+ opencode: "opencode";
537
538
  command: "command";
538
539
  codex: "codex";
539
- opencode: "opencode";
540
540
  }>;
541
541
  }, z.core.$strict>>>;
542
542
  scheduler: z.ZodDefault<z.ZodObject<{
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>;
@@ -560,7 +560,11 @@ async function runSchedulePlanner(plannerProfile, prompt, options, nodeId = "sch
560
560
  return normalizeRunnerOutput(plan, result.stdout).output.trim();
561
561
  }
562
562
  function plannerFailureMessage(plannerProfile, result) {
563
- const details = [result.stderr?.trim() ? `stderr:\n${result.stderr.trim()}` : void 0, result.stdout.trim() ? `stdout:\n${result.stdout.trim()}` : void 0].filter((value) => Boolean(value));
563
+ const details = [
564
+ result.timedOut ? "timed out waiting for scheduler subprocess" : void 0,
565
+ result.stderr?.trim() ? `stderr:\n${result.stderr.trim()}` : void 0,
566
+ result.stdout.trim() ? `stdout:\n${result.stdout.trim()}` : void 0
567
+ ].filter((value) => Boolean(value));
564
568
  const message = `schedule planner '${plannerProfile}' failed with exit ${result.exitCode}`;
565
569
  return details.length === 0 ? message : `${message}\n${details.join("\n")}`;
566
570
  }
package/package.json CHANGED
@@ -112,7 +112,7 @@
112
112
  "prepack": "bun run build:cli"
113
113
  },
114
114
  "type": "module",
115
- "version": "1.23.2",
115
+ "version": "1.23.3",
116
116
  "description": "Config-driven multi-agent pipeline runner for repository work",
117
117
  "main": "./dist/index.js",
118
118
  "types": "./dist/index.d.ts",