@oisincoveney/pipeline 1.5.6 → 1.5.7

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/index.js +6 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -28877,6 +28877,8 @@ function dispatchBlock(host, config2) {
28877
28877
  nativeDispatchBlock(host, nativeRoutes),
28878
28878
  cliDispatchBlock(host, cliRoutes),
28879
28879
  nodePromptContract(plan.workflowId, routes),
28880
+ "Only gates declared in `.pipeline/pipeline.yaml` are blocking. Do not invent RED, GREEN, full-suite, typecheck, or unrelated-drift gates.",
28881
+ "If a node returns targeted evidence and has no configured blocking gate, advance to the next workflow node.",
28880
28882
  "Do not use `pipe`, `oisin-pipeline`, or package scripts to execute workflow nodes.",
28881
28883
  hostSpecificDispatchGuard(host, nativeRoutes, cliRoutes)
28882
28884
  ].filter((line) => Boolean(line)).join(`
@@ -29802,6 +29804,8 @@ var SCAFFOLD_FILES = {
29802
29804
  "You are the orchestrator for the pipeline.",
29803
29805
  "Use `.pipeline/pipeline.yaml` as the source of truth for workflow order, profiles, gates, hooks, and artifacts.",
29804
29806
  "Delegate only to workflow node profiles and enforce configured gates before reporting completion.",
29807
+ "Only gates declared in `.pipeline/pipeline.yaml` are blocking. Do not invent RED, GREEN, full-suite, typecheck, or unrelated-drift gates.",
29808
+ "If a node returns targeted evidence and has no configured blocking gate, advance to the next workflow node.",
29805
29809
  ""
29806
29810
  ].join(`
29807
29811
  `),
@@ -29837,7 +29841,8 @@ var SCAFFOLD_FILES = {
29837
29841
  "You are the GREEN/code-write phase for the pipeline.",
29838
29842
  "Implement the smallest production change that satisfies the failing tests.",
29839
29843
  "Keep edits scoped to the requested behavior.",
29840
- "Return concrete test and typecheck evidence.",
29844
+ "Return concrete targeted test evidence. Include typecheck evidence only when a typecheck command exists or a configured gate requires it.",
29845
+ "Unrelated full-suite failures and missing optional scripts are not blocking unless `.pipeline/pipeline.yaml` declares a gate for them.",
29841
29846
  ""
29842
29847
  ].join(`
29843
29848
  `),
package/package.json CHANGED
@@ -73,7 +73,7 @@
73
73
  "prepack": "bun run build:cli"
74
74
  },
75
75
  "type": "module",
76
- "version": "1.5.6",
76
+ "version": "1.5.7",
77
77
  "description": "",
78
78
  "main": "index.js",
79
79
  "keywords": [],