@cat-factory/orchestration 0.248.5 → 0.250.0
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/container/engine-dependent-modules.d.ts.map +1 -1
- package/dist/container/engine-dependent-modules.js +6 -4
- package/dist/container/engine-dependent-modules.js.map +1 -1
- package/dist/modules/execution/BinaryCandidateController.d.ts +61 -0
- package/dist/modules/execution/BinaryCandidateController.d.ts.map +1 -0
- package/dist/modules/execution/BinaryCandidateController.js +215 -0
- package/dist/modules/execution/BinaryCandidateController.js.map +1 -0
- package/dist/modules/execution/ExecutionService.d.ts +38 -56
- package/dist/modules/execution/ExecutionService.d.ts.map +1 -1
- package/dist/modules/execution/ExecutionService.js +78 -127
- package/dist/modules/execution/ExecutionService.js.map +1 -1
- package/dist/modules/execution/OneShotStepController.d.ts.map +1 -1
- package/dist/modules/execution/OneShotStepController.js +3 -0
- package/dist/modules/execution/OneShotStepController.js.map +1 -1
- package/dist/modules/execution/RunAdmission.d.ts +15 -0
- package/dist/modules/execution/RunAdmission.d.ts.map +1 -1
- package/dist/modules/execution/RunAdmission.js +46 -9
- package/dist/modules/execution/RunAdmission.js.map +1 -1
- package/dist/modules/execution/RunDispatcher.d.ts +23 -7
- package/dist/modules/execution/RunDispatcher.d.ts.map +1 -1
- package/dist/modules/execution/RunDispatcher.js +28 -6
- package/dist/modules/execution/RunDispatcher.js.map +1 -1
- package/dist/modules/execution/RunDispatcherDependencies.d.ts +2 -0
- package/dist/modules/execution/RunDispatcherDependencies.d.ts.map +1 -1
- package/dist/modules/execution/RunDispatcherDependencies.js.map +1 -1
- package/dist/modules/execution/RunLifecycleController.d.ts +17 -0
- package/dist/modules/execution/RunLifecycleController.d.ts.map +1 -1
- package/dist/modules/execution/RunLifecycleController.js +27 -1
- package/dist/modules/execution/RunLifecycleController.js.map +1 -1
- package/dist/modules/execution/StepDecisionController.d.ts.map +1 -1
- package/dist/modules/execution/StepDecisionController.js +1 -0
- package/dist/modules/execution/StepDecisionController.js.map +1 -1
- package/dist/modules/execution/dispatcher-registries.d.ts +2 -0
- package/dist/modules/execution/dispatcher-registries.d.ts.map +1 -1
- package/dist/modules/execution/dispatcher-registries.js +15 -0
- package/dist/modules/execution/dispatcher-registries.js.map +1 -1
- package/dist/modules/execution/gate-window-controllers.d.ts +2 -0
- package/dist/modules/execution/gate-window-controllers.d.ts.map +1 -1
- package/dist/modules/execution/gate-window-controllers.js +12 -0
- package/dist/modules/execution/gate-window-controllers.js.map +1 -1
- package/dist/modules/execution/run-binary-output.d.ts.map +1 -1
- package/dist/modules/execution/run-binary-output.js +6 -1
- package/dist/modules/execution/run-binary-output.js.map +1 -1
- package/dist/modules/execution/run-decision-surfaces.d.ts +23 -0
- package/dist/modules/execution/run-decision-surfaces.d.ts.map +1 -0
- package/dist/modules/execution/run-decision-surfaces.js +66 -0
- package/dist/modules/execution/run-decision-surfaces.js.map +1 -0
- package/dist/modules/execution/run-foundational-services.d.ts +5 -2
- package/dist/modules/execution/run-foundational-services.d.ts.map +1 -1
- package/dist/modules/execution/run-foundational-services.js.map +1 -1
- package/dist/modules/execution/runServiceScope.d.ts +39 -0
- package/dist/modules/execution/runServiceScope.d.ts.map +1 -0
- package/dist/modules/execution/runServiceScope.js +46 -0
- package/dist/modules/execution/runServiceScope.js.map +1 -0
- package/dist/modules/execution/runVendorGate.d.ts +31 -0
- package/dist/modules/execution/runVendorGate.d.ts.map +1 -0
- package/dist/modules/execution/runVendorGate.js +40 -0
- package/dist/modules/execution/runVendorGate.js.map +1 -0
- package/dist/modules/execution/step-park.logic.d.ts +1 -1
- package/dist/modules/execution/step-park.logic.d.ts.map +1 -1
- package/dist/modules/execution/step-park.logic.js +5 -0
- package/dist/modules/execution/step-park.logic.js.map +1 -1
- package/dist/modules/execution/stepPreamble.d.ts +9 -2
- package/dist/modules/execution/stepPreamble.d.ts.map +1 -1
- package/dist/modules/execution/stepPreamble.js +28 -1
- package/dist/modules/execution/stepPreamble.js.map +1 -1
- package/dist/modules/pipelines/PipelineService.d.ts +6 -0
- package/dist/modules/pipelines/PipelineService.d.ts.map +1 -1
- package/dist/modules/pipelines/PipelineService.js +8 -2
- package/dist/modules/pipelines/PipelineService.js.map +1 -1
- package/dist/modules/pipelines/adHocPipeline.d.ts +18 -0
- package/dist/modules/pipelines/adHocPipeline.d.ts.map +1 -0
- package/dist/modules/pipelines/adHocPipeline.js +37 -0
- package/dist/modules/pipelines/adHocPipeline.js.map +1 -0
- package/dist/modules/pipelines/pipelineShape.d.ts +31 -0
- package/dist/modules/pipelines/pipelineShape.d.ts.map +1 -1
- package/dist/modules/pipelines/pipelineShape.js +104 -2
- package/dist/modules/pipelines/pipelineShape.js.map +1 -1
- package/package.json +11 -11
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ValidationError } from '@cat-factory/kernel';
|
|
2
|
+
import { adHocPipelineIdFor, isPipelinePurpose } from '@cat-factory/contracts';
|
|
3
|
+
/**
|
|
4
|
+
* Synthesize the one-step {@link Pipeline} a SINGLE-KIND run executes.
|
|
5
|
+
*
|
|
6
|
+
* Some agents are a whole job on their own: mapping a repository into the service blueprint,
|
|
7
|
+
* drafting a stack recipe for the setup wizard. Each of those used to be a catalog pipeline with
|
|
8
|
+
* exactly one step, which put an entry in the picker beside the build presets for something that
|
|
9
|
+
* is not a pipeline in any sense a user would recognise — and made "run this agent once" a thing
|
|
10
|
+
* the product could only offer by shipping another preset.
|
|
11
|
+
*
|
|
12
|
+
* The run is otherwise ORDINARY: the same admission gates, the same durable driver, the same
|
|
13
|
+
* board projection, the same retry. Only the definition is ephemeral, which is why every rule
|
|
14
|
+
* about what may run stays exactly where it was — a companion still has no producer to review, an
|
|
15
|
+
* initiative kind still refuses a task block, and `validatePipelineShape` still says so.
|
|
16
|
+
*/
|
|
17
|
+
export function adHocPipelineFor(agentKind, registry) {
|
|
18
|
+
const definition = registry.get(agentKind);
|
|
19
|
+
if (!definition) {
|
|
20
|
+
throw new ValidationError(`Unknown agent kind '${agentKind}'.`, {
|
|
21
|
+
reason: 'unknown_agent_kind',
|
|
22
|
+
agentKind,
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
const presentation = definition.presentation;
|
|
26
|
+
// The kind's OWN first declared purpose, when it declared any. A kind that declared none gets
|
|
27
|
+
// `build`, the classifier every unclassified chain already falls into; the value only decides
|
|
28
|
+
// which picker WOULD list it, and nothing lists a run with no pipeline behind it.
|
|
29
|
+
const declared = presentation?.purposes?.find((p) => isPipelinePurpose(p));
|
|
30
|
+
return {
|
|
31
|
+
id: adHocPipelineIdFor(agentKind),
|
|
32
|
+
name: presentation?.label ?? agentKind,
|
|
33
|
+
agentKinds: [agentKind],
|
|
34
|
+
purpose: declared ?? 'build',
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=adHocPipeline.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"adHocPipeline.js","sourceRoot":"","sources":["../../../src/modules/pipelines/adHocPipeline.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAiB,MAAM,qBAAqB,CAAA;AACpE,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAG9E;;;;;;;;;;;;;GAaG;AACH,MAAM,UAAU,gBAAgB,CAAC,SAAiB,EAAE,QAA2B;IAC7E,MAAM,UAAU,GAAG,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAA;IAC1C,IAAI,CAAC,UAAU,EAAE,CAAC;QAChB,MAAM,IAAI,eAAe,CAAC,uBAAuB,SAAS,IAAI,EAAE;YAC9D,MAAM,EAAE,oBAAoB;YAC5B,SAAS;SACV,CAAC,CAAA;IACJ,CAAC;IACD,MAAM,YAAY,GAAG,UAAU,CAAC,YAAY,CAAA;IAC5C,8FAA8F;IAC9F,8FAA8F;IAC9F,kFAAkF;IAClF,MAAM,QAAQ,GAAG,YAAY,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAA;IAC1E,OAAO;QACL,EAAE,EAAE,kBAAkB,CAAC,SAAS,CAAC;QACjC,IAAI,EAAE,YAAY,EAAE,KAAK,IAAI,SAAS;QACtC,UAAU,EAAE,CAAC,SAAS,CAAC;QACvB,OAAO,EAAE,QAAQ,IAAI,OAAO;KAC7B,CAAA;AACH,CAAC"}
|
|
@@ -40,6 +40,9 @@ export declare function pipelineHasEnabledBugIntake(agentKinds: string[], enable
|
|
|
40
40
|
* structurally), must not also carry a human approval gate, must set at least one axis
|
|
41
41
|
* threshold (or it would always skip), and needs a `task-estimator` to have run before it (or
|
|
42
42
|
* the gate has nothing to consult).
|
|
43
|
+
* - {@link assertValidRunConditions}: a step carrying a RUN CONDITION must satisfy the two
|
|
44
|
+
* structural rules an estimate gate satisfies — a gatable kind, and no human approval gate on
|
|
45
|
+
* the same step — because a skip is a skip whichever of the two axes caused it.
|
|
43
46
|
* - {@link assertValidAgentVariants}: a step selecting a registered agent-kind VARIANT must name
|
|
44
47
|
* one that exists and that varies THIS step's kind — an unknown id would silently fall back to
|
|
45
48
|
* the shipped prompt, and a mismatched one would run the step under another role's prompt.
|
|
@@ -191,6 +194,34 @@ export declare function assertValidCompanionPlacement({ agentKinds, enabled, age
|
|
|
191
194
|
* to consult.
|
|
192
195
|
*/
|
|
193
196
|
export declare function assertValidGating({ agentKinds, enabled, gates, gating, agentKindRegistry, }: PipelineShape): void;
|
|
197
|
+
/**
|
|
198
|
+
* Validate every ENABLED step carrying a RUN CONDITION (`stepOptions[i].condition`).
|
|
199
|
+
*
|
|
200
|
+
* A run condition is the SECOND axis that can skip a step, and a skip is a skip whichever axis
|
|
201
|
+
* caused it — so the two structural rules that keep the estimate gate from removing something the
|
|
202
|
+
* run needs bind here verbatim, and for the same reasons:
|
|
203
|
+
*
|
|
204
|
+
* 1. The kind must be GATABLE. Gatability answers "may this step be absent from a run at all",
|
|
205
|
+
* which is a property of what the kind produces and who reads it, not of the reason for the
|
|
206
|
+
* absence. Without this, a condition on `merger` silently drops the merge on every run outside
|
|
207
|
+
* its scope and the pipeline finishes reporting success; on `coder`, the run reviews and merges
|
|
208
|
+
* an unchanged branch. `isGatableKind` is asked with the registry so a DEPLOYMENT-registered
|
|
209
|
+
* kind's own flag is honoured, exactly as the estimate gate asks it.
|
|
210
|
+
* 2. It must NOT also carry a human approval gate (`gates[i]`), for the reason the estimate gate
|
|
211
|
+
* refuses the pair: a condition may leave a checkpoint un-reached, never CANCEL a pause the
|
|
212
|
+
* author asked for. That the scope is computed rather than modelled makes it worse here, not
|
|
213
|
+
* better — nobody chose it per run.
|
|
214
|
+
*
|
|
215
|
+
* Deliberately NOT refused: a condition BESIDE an enabled estimate gate. Those two compose
|
|
216
|
+
* (skip if either says no) and answer genuinely different questions — "does this step apply to this
|
|
217
|
+
* kind of change" and "is this change big enough to be worth it" — so a UI pass that runs only on
|
|
218
|
+
* frontend work and only above a complexity floor is a coherent thing to author.
|
|
219
|
+
*
|
|
220
|
+
* This lives in the shape validation rather than in `validatePipelineAuthoring` because it states
|
|
221
|
+
* what is BROKEN, not what is incomplete, so the RUN door refuses it too. Nothing stored predates
|
|
222
|
+
* the rule: run conditions ship with it.
|
|
223
|
+
*/
|
|
224
|
+
export declare function assertValidRunConditions({ agentKinds, enabled, gates, stepOptions, agentKindRegistry, }: PipelineShape): void;
|
|
194
225
|
/**
|
|
195
226
|
* Validate every ENABLED Tester step whose test quality-control companion carries an enabled
|
|
196
227
|
* estimate gate. The QC gate lives on the Tester step itself (not a companion), so it is
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pipelineShape.d.ts","sourceRoot":"","sources":["../../../src/modules/pipelines/pipelineShape.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,YAAY,EACZ,oBAAoB,EAEpB,UAAU,EACV,WAAW,EACX,mBAAmB,EACpB,MAAM,qBAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"pipelineShape.d.ts","sourceRoot":"","sources":["../../../src/modules/pipelines/pipelineShape.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { hasApproverPolicy, requiredGateApprovals, ValidationError } from '@cat-factory/kernel';
|
|
2
|
-
import { validateDescriptorFields } from '@cat-factory/contracts';
|
|
2
|
+
import { conflictingOutputSizeOptions, validateDescriptorFields } from '@cat-factory/contracts';
|
|
3
3
|
import { BINARY_OUTPUT_TRAIT, companionTargets, hasTrait, INLINE_ENGINE_SYSTEM_PROMPTS, isCompanionKind, isGatableKind, SKILL_AGENT_KIND, TASK_ESTIMATOR_AGENT_KIND, } from '@cat-factory/agents';
|
|
4
4
|
import { isTesterKind } from '../execution/ci.logic.js';
|
|
5
5
|
/**
|
|
@@ -22,6 +22,7 @@ export function pipelineHasEnabledBugIntake(agentKinds, enabled) {
|
|
|
22
22
|
export function validatePipelineShape(pipeline) {
|
|
23
23
|
assertValidCompanionPlacement(pipeline);
|
|
24
24
|
assertValidGating(pipeline);
|
|
25
|
+
assertValidRunConditions(pipeline);
|
|
25
26
|
assertValidTesterQualityGating(pipeline);
|
|
26
27
|
assertValidSkillSteps(pipeline);
|
|
27
28
|
assertValidAgentVariants(pipeline);
|
|
@@ -113,12 +114,70 @@ export function assertValidBinaryOutputSteps({ agentKinds, enabled, stepOptions,
|
|
|
113
114
|
continue;
|
|
114
115
|
if (!hasTrait(kind, BINARY_OUTPUT_TRAIT, agentKindRegistry))
|
|
115
116
|
continue;
|
|
116
|
-
|
|
117
|
+
const config = stepOptions?.[i]?.binaryOutput;
|
|
118
|
+
if (!config?.storageServiceId?.trim()) {
|
|
117
119
|
throw new ValidationError(`Step '${kind}' generates binary outputs but selects no storage service — pick the ` +
|
|
118
120
|
"foundational service it stores them through in the step's options.");
|
|
119
121
|
}
|
|
122
|
+
assertComparableCandidates(kind, config);
|
|
123
|
+
assertUnambiguousOutputSize(kind, config);
|
|
120
124
|
}
|
|
121
125
|
}
|
|
126
|
+
/**
|
|
127
|
+
* A step that states exact output DIMENSIONS may not also state the shape a second way.
|
|
128
|
+
*
|
|
129
|
+
* WHICH options conflict, and why, is contracts' {@link conflictingOutputSizeOptions}: the SPA's
|
|
130
|
+
* pipeline builder has to state this same refusal where it is fixable without a round trip, so the
|
|
131
|
+
* rule is shared and only the MESSAGE is composed here. What stays here is the disposition (this
|
|
132
|
+
* one refuses the save) and the wording, which names the numbers actually configured.
|
|
133
|
+
*
|
|
134
|
+
* Structural, so it lands beside {@link assertComparableCandidates} at pipeline SAVE and again at
|
|
135
|
+
* run start: all three fields are readable off the step and none depends on workspace state or on
|
|
136
|
+
* which integrations happen to be registered.
|
|
137
|
+
*/
|
|
138
|
+
function assertUnambiguousOutputSize(kind, config) {
|
|
139
|
+
const generation = config.generation;
|
|
140
|
+
const conflicting = conflictingOutputSizeOptions(generation);
|
|
141
|
+
if (!generation?.outputSize || conflicting.length === 0)
|
|
142
|
+
return;
|
|
143
|
+
const { width, height } = generation.outputSize;
|
|
144
|
+
const conflicts = conflicting.map((option) => option === 'aspectRatio'
|
|
145
|
+
? `an aspect ratio of ${generation.aspectRatio}`
|
|
146
|
+
: `an upscale of ${generation.upscale}x`);
|
|
147
|
+
throw new ValidationError(`Step '${kind}' asks for an exact output size of ${width}x${height} and also states ` +
|
|
148
|
+
`${conflicts.join(' and ')}, which describe the delivered dimensions a second time and ` +
|
|
149
|
+
'can disagree with it. Keep whichever one is the requirement and remove the other: with ' +
|
|
150
|
+
'both, the agent writing the generation call is the one left to decide which the step ' +
|
|
151
|
+
'meant.');
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* A step that COMPARES candidates must be able to produce more than one of them.
|
|
155
|
+
*
|
|
156
|
+
* There are exactly two ways to get a comparison, and a step needs one of them: several
|
|
157
|
+
* integrations rendering the same subject, or one integration asked for several candidates. A
|
|
158
|
+
* step with a single producer and `perGenerator: 1` yields one candidate per subject, which the
|
|
159
|
+
* engine auto-keeps rather than parking on, so the human review the comparison was configured for
|
|
160
|
+
* silently never happens.
|
|
161
|
+
*
|
|
162
|
+
* Structural, so it lands at pipeline SAVE alongside the missing-storage refusal above rather
|
|
163
|
+
* than at run start: both halves are readable off the step, neither depends on workspace state,
|
|
164
|
+
* and a comparison that cannot compare is a mis-configured step whatever the catalog says. What
|
|
165
|
+
* this deliberately does not check is whether the selected ids RESOLVE, which is admission's job
|
|
166
|
+
* and reads a registry this function has no business holding.
|
|
167
|
+
*/
|
|
168
|
+
function assertComparableCandidates(kind, config) {
|
|
169
|
+
const comparison = config.comparison;
|
|
170
|
+
if (!comparison)
|
|
171
|
+
return;
|
|
172
|
+
if ((comparison.perGenerator ?? 1) > 1)
|
|
173
|
+
return;
|
|
174
|
+
if ((config.generatorIds?.length ?? 0) >= 2)
|
|
175
|
+
return;
|
|
176
|
+
throw new ValidationError(`Step '${kind}' is configured to compare generated candidates, but it can only produce one ` +
|
|
177
|
+
'per subject: select a second generative integration, or raise the candidates-per-' +
|
|
178
|
+
'integration count. With one candidate there is nothing to choose between, so the run ' +
|
|
179
|
+
'would keep it without asking.');
|
|
180
|
+
}
|
|
122
181
|
/**
|
|
123
182
|
* Every ENABLED step that selects an agent-kind VARIANT (`stepOptions[i].agentVariantId`) must
|
|
124
183
|
* name one the deployment registered, that variant's `baseKind` must be the step's own kind, and
|
|
@@ -260,6 +319,49 @@ export function assertValidGating({ agentKinds, enabled, gates, gating, agentKin
|
|
|
260
319
|
}
|
|
261
320
|
}
|
|
262
321
|
}
|
|
322
|
+
/**
|
|
323
|
+
* Validate every ENABLED step carrying a RUN CONDITION (`stepOptions[i].condition`).
|
|
324
|
+
*
|
|
325
|
+
* A run condition is the SECOND axis that can skip a step, and a skip is a skip whichever axis
|
|
326
|
+
* caused it — so the two structural rules that keep the estimate gate from removing something the
|
|
327
|
+
* run needs bind here verbatim, and for the same reasons:
|
|
328
|
+
*
|
|
329
|
+
* 1. The kind must be GATABLE. Gatability answers "may this step be absent from a run at all",
|
|
330
|
+
* which is a property of what the kind produces and who reads it, not of the reason for the
|
|
331
|
+
* absence. Without this, a condition on `merger` silently drops the merge on every run outside
|
|
332
|
+
* its scope and the pipeline finishes reporting success; on `coder`, the run reviews and merges
|
|
333
|
+
* an unchanged branch. `isGatableKind` is asked with the registry so a DEPLOYMENT-registered
|
|
334
|
+
* kind's own flag is honoured, exactly as the estimate gate asks it.
|
|
335
|
+
* 2. It must NOT also carry a human approval gate (`gates[i]`), for the reason the estimate gate
|
|
336
|
+
* refuses the pair: a condition may leave a checkpoint un-reached, never CANCEL a pause the
|
|
337
|
+
* author asked for. That the scope is computed rather than modelled makes it worse here, not
|
|
338
|
+
* better — nobody chose it per run.
|
|
339
|
+
*
|
|
340
|
+
* Deliberately NOT refused: a condition BESIDE an enabled estimate gate. Those two compose
|
|
341
|
+
* (skip if either says no) and answer genuinely different questions — "does this step apply to this
|
|
342
|
+
* kind of change" and "is this change big enough to be worth it" — so a UI pass that runs only on
|
|
343
|
+
* frontend work and only above a complexity floor is a coherent thing to author.
|
|
344
|
+
*
|
|
345
|
+
* This lives in the shape validation rather than in `validatePipelineAuthoring` because it states
|
|
346
|
+
* what is BROKEN, not what is incomplete, so the RUN door refuses it too. Nothing stored predates
|
|
347
|
+
* the rule: run conditions ship with it.
|
|
348
|
+
*/
|
|
349
|
+
export function assertValidRunConditions({ agentKinds, enabled, gates, stepOptions, agentKindRegistry, }) {
|
|
350
|
+
if (!stepOptions)
|
|
351
|
+
return;
|
|
352
|
+
const isEnabled = (i) => enabled?.[i] !== false;
|
|
353
|
+
for (let i = 0; i < agentKinds.length; i++) {
|
|
354
|
+
if (!stepOptions[i]?.condition || !isEnabled(i))
|
|
355
|
+
continue;
|
|
356
|
+
const kind = agentKinds[i];
|
|
357
|
+
if (kind === undefined || !isGatableKind(kind, agentKindRegistry)) {
|
|
358
|
+
throw new ValidationError(`Step '${kind}' cannot carry a run condition — its output is required by the rest of the run, so a run outside the condition's scope would silently finish without it. Only a step whose result later steps read as context (a design, a review, an extra verification pass) may be skipped.`);
|
|
359
|
+
}
|
|
360
|
+
if (gates?.[i] === true) {
|
|
361
|
+
throw new ValidationError(`Step '${kind}' carries a human approval gate, so it cannot also carry a run condition — a condition may leave a checkpoint un-reached but never remove one the pipeline author asked for. Drop the approval gate to make the step conditional, or drop the condition to keep it unconditional.`);
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
}
|
|
263
365
|
/**
|
|
264
366
|
* Validate every ENABLED Tester step whose test quality-control companion carries an enabled
|
|
265
367
|
* estimate gate. The QC gate lives on the Tester step itself (not a companion), so it is
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pipelineShape.js","sourceRoot":"","sources":["../../../src/modules/pipelines/pipelineShape.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAA;AAS/F,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAA;AACjE,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAChB,QAAQ,EACR,4BAA4B,EAC5B,eAAe,EACf,aAAa,EACb,gBAAgB,EAChB,yBAAyB,GAC1B,MAAM,qBAAqB,CAAA;AAE5B,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AASvD;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG,YAAY,CAAA;AAEjD;;;;GAIG;AACH,MAAM,UAAU,2BAA2B,CAAC,UAAoB,EAAE,OAAmB;IACnF,OAAO,UAAU,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,KAAK,qBAAqB,IAAI,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,KAAK,CAAC,CAAA;AAC/F,CAAC;AAsED,MAAM,UAAU,qBAAqB,CAAC,QAAuB;IAC3D,6BAA6B,CAAC,QAAQ,CAAC,CAAA;IACvC,iBAAiB,CAAC,QAAQ,CAAC,CAAA;IAC3B,8BAA8B,CAAC,QAAQ,CAAC,CAAA;IACxC,qBAAqB,CAAC,QAAQ,CAAC,CAAA;IAC/B,wBAAwB,CAAC,QAAQ,CAAC,CAAA;IAClC,4BAA4B,CAAC,QAAQ,CAAC,CAAA;IACtC,qBAAqB,CAAC,QAAQ,CAAC,CAAA;AACjC,CAAC;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,UAAU,qBAAqB,CAAC,EACpC,UAAU,EACV,OAAO,EACP,KAAK,EACL,WAAW,EACX,YAAY,GACE;IACd,IAAI,CAAC,WAAW;QAAE,OAAM;IACxB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QAC3C,MAAM,MAAM,GAAG,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,CAAA;QACzC,MAAM,IAAI,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;QAC1B,IAAI,CAAC,MAAM,IAAI,IAAI,KAAK,SAAS,IAAI,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,KAAK;YAAE,SAAQ;QACrE,MAAM,kBAAkB,GACtB,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,MAAM,CAAC,YAAY,KAAK,SAAS,CAAA;QAC1E,IAAI,kBAAkB,IAAI,KAAK,EAAE,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC;YAC9C,MAAM,IAAI,eAAe,CACvB,SAAS,IAAI,2JAA2J,CACzK,CAAA;QACH,CAAC;QACD,uBAAuB,CAAC,IAAI,EAAE,MAAM,CAAC,CAAA;QACrC,yFAAyF;QACzF,iGAAiG;QACjG,IAAI,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,MAAM,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,MAAM,KAAK,CAAC;YAAE,SAAQ;QACxF,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;YAC5B,MAAM,IAAI,eAAe,CACvB,SAAS,IAAI,sFAAsF,CACpG,CAAA;QACH,CAAC;QACD,MAAM,QAAQ,GAAG,wBAAwB,CAAC,YAAY,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,MAAM,CAAC,MAAM,CAAC,CAAA;QAC/F,IAAI,QAAQ,CAAC,MAAM,EAAE,CAAC;YACpB,MAAM,IAAI,eAAe,CAAC,SAAS,IAAI,kCAAkC,QAAQ,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QAChG,CAAC;IACH,CAAC;AACH,CAAC;AAED;;;;;;;GAOG;AACH,SAAS,uBAAuB,CAAC,IAAY,EAAE,MAAsB;IACnE,MAAM,QAAQ,GAAG,qBAAqB,CAAC,MAAM,CAAC,CAAA;IAC9C,IAAI,QAAQ,IAAI,CAAC;QAAE,OAAM;IACzB,MAAM,KAAK,GAAG,MAAM,CAAC,SAAS,EAAE,OAAO,EAAE,MAAM,IAAI,CAAC,CAAA;IACpD,IAAI,CAAC,MAAM,CAAC,SAAS,EAAE,KAAK,EAAE,MAAM,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,KAAK,KAAK,CAAC;QAAE,OAAM;IACrE,IAAI,KAAK,GAAG,QAAQ,EAAE,CAAC;QACrB,MAAM,IAAI,eAAe,CACvB,SAAS,IAAI,cAAc,QAAQ,6BAA6B,KAAK,uHAAuH,CAC7L,CAAA;IACH,CAAC;AACH,CAAC;AAED;;;;;;;;;;;;GAYG;AACH,MAAM,UAAU,4BAA4B,CAAC,EAC3C,UAAU,EACV,OAAO,EACP,WAAW,EACX,iBAAiB,GACH;IACd,IAAI,CAAC,iBAAiB;QAAE,OAAM;IAC9B,MAAM,SAAS,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,KAAK,CAAA;IACvD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QAC3C,MAAM,IAAI,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;QAC1B,IAAI,IAAI,KAAK,SAAS,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;YAAE,SAAQ;QACjD,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,mBAAmB,EAAE,iBAAiB,CAAC;YAAE,SAAQ;QACrE,IAAI,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC,EAAE,YAAY,EAAE,gBAAgB,EAAE,IAAI,EAAE,EAAE,CAAC;YAC9D,MAAM,IAAI,eAAe,CACvB,SAAS,IAAI,uEAAuE;gBAClF,oEAAoE,CACvE,CAAA;QACH,CAAC;IACH,CAAC;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,UAAU,wBAAwB,CAAC,EACvC,UAAU,EACV,OAAO,EACP,WAAW,EACX,iBAAiB,GACH;IACd,IAAI,CAAC,WAAW,IAAI,CAAC,iBAAiB;QAAE,OAAM;IAC9C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QAC3C,MAAM,SAAS,GAAG,WAAW,CAAC,CAAC,CAAC,EAAE,cAAc,CAAA;QAChD,IAAI,CAAC,SAAS,IAAI,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,KAAK;YAAE,SAAQ;QAClD,MAAM,OAAO,GAAG,iBAAiB,CAAC,OAAO,CAAC,SAAS,CAAC,CAAA;QACpD,IAAI,CAAC,OAAO,EAAE,CAAC;YACb,MAAM,IAAI,eAAe,CACvB,SAAS,UAAU,CAAC,CAAC,CAAC,gCAAgC,SAAS,6CAA6C,CAC7G,CAAA;QACH,CAAC;QACD,IAAI,OAAO,CAAC,QAAQ,KAAK,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC;YACvC,MAAM,IAAI,eAAe,CACvB,kBAAkB,SAAS,aAAa,OAAO,CAAC,QAAQ,qCAAqC,UAAU,CAAC,CAAC,CAAC,SAAS,CACpH,CAAA;QACH,CAAC;QACD,IAAI,UAAU,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,CAAC,CAAE,IAAI,4BAA4B,EAAE,CAAC;YACpE,MAAM,IAAI,eAAe,CACvB,kBAAkB,SAAS,8BAA8B,UAAU,CAAC,CAAC,CAAC,wLAAwL,CAC/P,CAAA;QACH,CAAC;IACH,CAAC;AACH,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,qBAAqB,CAAC,EAAE,UAAU,EAAE,OAAO,EAAE,WAAW,EAAiB;IACvF,MAAM,SAAS,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,KAAK,CAAA;IACvD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QAC3C,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,gBAAgB,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;YAAE,SAAQ;QACjE,IAAI,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,EAAE,CAAC;YACvC,MAAM,IAAI,eAAe,CACvB,MAAM,gBAAgB,iEAAiE,CACxF,CAAA;QACH,CAAC;IACH,CAAC;AACH,CAAC;AAED;;;;;;;;GAQG;AACH,MAAM,UAAU,6BAA6B,CAAC,EAC5C,UAAU,EACV,OAAO,EACP,iBAAiB,GACH;IACd,MAAM,SAAS,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,KAAK,CAAA;IACvD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QAC3C,MAAM,IAAI,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;QAC1B,IAAI,IAAI,KAAK,SAAS,IAAI,CAAC,eAAe,CAAC,IAAI,EAAE,iBAAiB,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;YAAE,SAAQ;QAC9F,MAAM,OAAO,GAAG,gBAAgB,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAA;QACzD,mFAAmF;QACnF,IAAI,WAA+B,CAAA;QACnC,KAAK,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC;YAChC,IAAI,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC;gBACjB,WAAW,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;gBAC3B,MAAK;YACP,CAAC;QACH,CAAC;QACD,IAAI,WAAW,KAAK,SAAS,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,CAAC;YAChE,MAAM,IAAI,eAAe,CACvB,cAAc,IAAI,+DAA+D,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CACxG,CAAA;QACH,CAAC;IACH,CAAC;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAM,UAAU,iBAAiB,CAAC,EAChC,UAAU,EACV,OAAO,EACP,KAAK,EACL,MAAM,EACN,iBAAiB,GACH;IACd,IAAI,CAAC,MAAM;QAAE,OAAM;IACnB,MAAM,SAAS,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,KAAK,CAAA;IACvD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QAC3C,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA;QACnB,IAAI,CAAC,CAAC,EAAE,OAAO,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;YAAE,SAAQ;QAC1C,MAAM,IAAI,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;QAC1B,IAAI,IAAI,KAAK,SAAS,IAAI,CAAC,aAAa,CAAC,IAAI,EAAE,iBAAiB,CAAC,EAAE,CAAC;YAClE,MAAM,IAAI,eAAe,CACvB,SAAS,IAAI,mNAAmN,CACjO,CAAA;QACH,CAAC;QACD,IAAI,KAAK,EAAE,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC;YACxB,MAAM,IAAI,eAAe,CACvB,SAAS,IAAI,+OAA+O,CAC7P,CAAA;QACH,CAAC;QACD,IAAI,CAAC,CAAC,aAAa,KAAK,SAAS,IAAI,CAAC,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,CAAC,SAAS,KAAK,SAAS,EAAE,CAAC;YAC1F,MAAM,IAAI,eAAe,CACvB,SAAS,IAAI,4HAA4H,CAC1I,CAAA;QACH,CAAC;QACD,MAAM,YAAY,GAAG,UAAU;aAC5B,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;aACX,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,yBAAyB,IAAI,SAAS,CAAC,CAAC,CAAC,CAAC,CAAA;QAClE,IAAI,CAAC,YAAY,EAAE,CAAC;YAClB,MAAM,IAAI,eAAe,CACvB,SAAS,IAAI,mDAAmD,yBAAyB,sEAAsE,CAChK,CAAA;QACH,CAAC;IACH,CAAC;AACH,CAAC;AAED;;;;;;;;GAQG;AACH,MAAM,UAAU,8BAA8B,CAAC,EAC7C,UAAU,EACV,OAAO,EACP,aAAa,GACC;IACd,IAAI,CAAC,aAAa;QAAE,OAAM;IAC1B,MAAM,SAAS,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,KAAK,CAAA;IACvD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QAC3C,MAAM,EAAE,GAAG,aAAa,CAAC,CAAC,CAAC,CAAA;QAC3B,MAAM,CAAC,GAAG,EAAE,EAAE,MAAM,CAAA;QACpB,IAAI,CAAC,CAAC,EAAE,OAAO,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;YAAE,SAAQ;QAC1C,MAAM,IAAI,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;QAC1B,IAAI,IAAI,KAAK,SAAS,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC;YAAE,SAAQ;QACvD,IAAI,CAAC,CAAC,aAAa,KAAK,SAAS,IAAI,CAAC,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,CAAC,SAAS,KAAK,SAAS,EAAE,CAAC;YAC1F,MAAM,IAAI,eAAe,CACvB,SAAS,IAAI,kKAAkK,CAChL,CAAA;QACH,CAAC;QACD,MAAM,YAAY,GAAG,UAAU;aAC5B,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;aACX,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,yBAAyB,IAAI,SAAS,CAAC,CAAC,CAAC,CAAC,CAAA;QAClE,IAAI,CAAC,YAAY,EAAE,CAAC;YAClB,MAAM,IAAI,eAAe,CACvB,SAAS,IAAI,6EAA6E,yBAAyB,sEAAsE,CAC1L,CAAA;QACH,CAAC;IACH,CAAC;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,UAAU,wBAAwB,CACtC,UAAoB,EACpB,YAA8C,EAC9C,MAAkB,EAClB,OAAmB;IAEnB,MAAM,SAAS,GAAyB,YAAY,IAAI,MAAM,CAAA;IAC9D,MAAM,mBAAmB,GAAG,2BAA2B,CAAC,UAAU,EAAE,OAAO,CAAC,CAAA;IAC5E,IAAI,mBAAmB,IAAI,SAAS,KAAK,WAAW,EAAE,CAAC;QACrD,MAAM,IAAI,eAAe,CACvB,sBAAsB,qBAAqB,8GAA8G,CAC1J,CAAA;IACH,CAAC;IACD,IAAI,MAAM,KAAK,QAAQ,IAAI,SAAS,KAAK,WAAW,EAAE,CAAC;QACrD,MAAM,IAAI,eAAe,CACvB,6FAA6F,CAC9F,CAAA;IACH,CAAC;IACD,IAAI,MAAM,KAAK,WAAW,IAAI,SAAS,KAAK,SAAS,EAAE,CAAC;QACtD,MAAM,IAAI,eAAe,CACvB,8FAA8F,CAC/F,CAAA;IACH,CAAC;AACH,CAAC"}
|
|
1
|
+
{"version":3,"file":"pipelineShape.js","sourceRoot":"","sources":["../../../src/modules/pipelines/pipelineShape.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/orchestration",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.250.0",
|
|
4
4
|
"description": "Delivery-workflow engine for the Agent Architecture Board (execution, bootstrap, pipelines, board, boardScan, requirements, and composition root).",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,20 +25,20 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"ai": "^7.0.58",
|
|
28
|
-
"@cat-factory/agents": "0.
|
|
29
|
-
"@cat-factory/caching": "0.18.
|
|
30
|
-
"@cat-factory/contracts": "0.
|
|
31
|
-
"@cat-factory/integrations": "0.153.
|
|
32
|
-
"@cat-factory/kernel": "0.
|
|
33
|
-
"@cat-factory/prompt-fragments": "1.0.
|
|
34
|
-
"@cat-factory/
|
|
35
|
-
"@cat-factory/
|
|
36
|
-
"@cat-factory/
|
|
28
|
+
"@cat-factory/agents": "0.123.0",
|
|
29
|
+
"@cat-factory/caching": "0.18.29",
|
|
30
|
+
"@cat-factory/contracts": "0.286.0",
|
|
31
|
+
"@cat-factory/integrations": "0.153.5",
|
|
32
|
+
"@cat-factory/kernel": "0.281.0",
|
|
33
|
+
"@cat-factory/prompt-fragments": "1.0.38",
|
|
34
|
+
"@cat-factory/spend": "0.15.56",
|
|
35
|
+
"@cat-factory/workspaces": "0.27.0",
|
|
36
|
+
"@cat-factory/sandbox": "0.11.115"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"typescript": "7.0.2",
|
|
40
40
|
"vitest": "^4.1.10",
|
|
41
|
-
"@cat-factory/sandbox-fixtures": "0.7.
|
|
41
|
+
"@cat-factory/sandbox-fixtures": "0.7.322"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "tsc -b tsconfig.build.json",
|