@oisincoveney/pipeline 1.23.1 → 1.23.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.js CHANGED
@@ -218,6 +218,7 @@ profiles:
218
218
  runner: opencode
219
219
  description: Refine a baseline schedule into a specialized approved-plan artifact.
220
220
  instructions: { inline: "Generate exactly one workflow named root as an explicit schedule graph. Return YAML only." }
221
+ timeout_ms: 300000
221
222
  skills: [schedule-graph-shaping]
222
223
  mcp_servers: [pipeline-gateway]
223
224
  tools: [read, list, grep, glob, bash]
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
- fail: "fail";
17
16
  pass: "pass";
17
+ fail: "fail";
18
18
  skip: "skip";
19
19
  }>;
20
20
  summary: z.ZodOptional<z.ZodString>;
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.1",
115
+ "version": "1.23.2",
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",