@oisincoveney/pipeline 1.5.7 → 1.6.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/README.md +10 -0
- package/dist/config.d.ts +520 -233
- package/dist/config.js +515 -21892
- package/dist/gates.js +129 -0
- package/dist/index.d.ts +12 -10
- package/dist/index.js +249 -39128
- package/dist/install-commands.js +643 -0
- package/dist/pipeline-init.js +445 -0
- package/dist/pipeline-runtime.d.ts +171 -130
- package/dist/pipeline-runtime.js +1263 -31396
- package/dist/runner.d.ts +52 -48
- package/dist/runner.js +396 -7690
- package/dist/workflow-planner.d.ts +41 -29
- package/dist/workflow-planner.js +153 -208
- package/docs/config-architecture.md +37 -1
- package/package.json +13 -4
- package/dist/backlog.d.ts +0 -68
- package/dist/gates.d.ts +0 -19
- package/dist/install-commands.d.ts +0 -23
- package/dist/pipeline-init.d.ts +0 -14
- package/dist/task-ref.d.ts +0 -10
package/README.md
CHANGED
|
@@ -124,10 +124,17 @@ orchestrator:
|
|
|
124
124
|
|
|
125
125
|
workflows:
|
|
126
126
|
default:
|
|
127
|
+
execution:
|
|
128
|
+
fail_fast: true
|
|
129
|
+
max_parallel_nodes: 2
|
|
127
130
|
nodes:
|
|
128
131
|
- id: implement
|
|
129
132
|
kind: agent
|
|
130
133
|
profile: implementer
|
|
134
|
+
timeout_ms: 300000
|
|
135
|
+
retries:
|
|
136
|
+
max_attempts: 2
|
|
137
|
+
retry_on: [exit_nonzero, gate_failure, timeout]
|
|
131
138
|
gates:
|
|
132
139
|
- kind: builtin
|
|
133
140
|
builtin: test
|
|
@@ -189,6 +196,9 @@ runners:
|
|
|
189
196
|
- Native subagent strategy is preferred when the selected runner can represent
|
|
190
197
|
the configured semantics. Otherwise the runtime uses a subprocess boundary.
|
|
191
198
|
- Parallel DAG batches run concurrently after dependencies and gates pass.
|
|
199
|
+
- Workflow execution can cap parallelism and enable fail-fast batch stopping.
|
|
200
|
+
- Nodes can declare bounded retries, retry reasons, backoff, and execution
|
|
201
|
+
timeouts.
|
|
192
202
|
- Agent self-reporting is not enough to pass deterministic gates.
|
|
193
203
|
- JSON Schema gates validate structure only. Use `verdict` and `acceptance`
|
|
194
204
|
gates to enforce semantic pass/fail and per-criterion coverage.
|