orchestrator-workflow 0.12.0 → 0.13.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/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,37 @@ All notable changes to `orchestrator-workflow` are documented here.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.13.0] - 2026-07-18
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- `05-review-findings.md`'s findings-table placeholder/legend row
|
|
13
|
+
(`| low/medium/high/critical | ... | accepted/defer |`) now carries a
|
|
14
|
+
comment stating its fail-closed semantics: replace this row when
|
|
15
|
+
transferring reviewer findings (step 7), or delete it outright for a
|
|
16
|
+
genuine zero-findings review (a header row with no data rows is valid; a
|
|
17
|
+
leftover legend row next to real finding rows is also fine). `SKILL.md`'s
|
|
18
|
+
step 7 gains a matching one-sentence rule. This is the contract half of a
|
|
19
|
+
fix for a mixed-state bypass in grounding-mcp's orchestrator-workflow
|
|
20
|
+
completeness reader: the reader identifies a real finding row by its
|
|
21
|
+
Severity cell carrying a single concrete value, so the shipped slash-list
|
|
22
|
+
legend row was never counted as a finding — a run that filled the
|
|
23
|
+
`acceptance-recommendation` marker with `accept` but left this row
|
|
24
|
+
byte-for-byte as shipped read as `complete: true` with zero findings,
|
|
25
|
+
indistinguishable from a genuine zero-findings review. The runtime half
|
|
26
|
+
(the reader treating a survived, unaccompanied placeholder row as an
|
|
27
|
+
explicit format blocker instead of silently reporting zero findings) is a
|
|
28
|
+
lockstep sibling change in grounding-mcp's own release, outside this
|
|
29
|
+
package. In this package the change is docs/template/test-only: no
|
|
30
|
+
runtime behavior changes here, the completeness reader itself is not part
|
|
31
|
+
of this package, and the fail-closed enforcement only takes effect once
|
|
32
|
+
grounding-mcp ships its lockstep sibling change (agent-tasks task
|
|
33
|
+
8f173547); do not tag/publish this 0.13.0 release before that change ships
|
|
34
|
+
(release ordering). A template-markers test pins the placeholder row's
|
|
35
|
+
literal wording (mutation-checked, matching the reader's literal match) and
|
|
36
|
+
that the replace/delete rule is documented next to it. Motivated by
|
|
37
|
+
agent-tasks task fa0eca65.
|
|
38
|
+
|
|
8
39
|
## [0.12.0] - 2026-07-16
|
|
9
40
|
|
|
10
41
|
### Added
|
package/assets/skill/SKILL.md
CHANGED
|
@@ -118,6 +118,10 @@ directory and the subagents.
|
|
|
118
118
|
transfer each finding from the reviewer output contract into the table's
|
|
119
119
|
columns as-is, keeping the Severity and Decision headers unchanged, since
|
|
120
120
|
those two are what the orchestrator-workflow completeness reader verifies.
|
|
121
|
+
Replace the shipped placeholder/legend row with the transferred findings;
|
|
122
|
+
for a genuine zero-findings review, delete that row instead of leaving it
|
|
123
|
+
in place, since the completeness reader treats an untouched placeholder
|
|
124
|
+
row with no finding rows as the template never having been filled in.
|
|
121
125
|
8. **Decide acceptance.** Accept, request fixes, defer, or escalate to the
|
|
122
126
|
operator. High or critical findings block acceptance until fixed or
|
|
123
127
|
explicitly waived: critical findings require operator sign-off; high
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
| Severity | Category | Description | Suggested Fix | Decision |
|
|
12
12
|
|---|---|---|---|---|
|
|
13
13
|
| low/medium/high/critical | correctness/architecture/security/tests/maintainability/performance/docs | <!-- finding --> | <!-- fix --> | accepted/defer |
|
|
14
|
+
<!-- This row is the shipped template placeholder, not a finding: the orchestrator-workflow completeness reader fails the completeness gate closed when this exact row survives untouched and no concrete finding row has been added, the same way a `TODO` marker does. During findings transfer (step 7), replace this row with each reviewer finding. For a genuine zero-findings review, delete this row instead — a header row with no data rows is a valid, complete table; leaving this row next to real finding rows is also fine. This mirrors grounding-mcp's placeholder-row detection; keep the two in sync. -->
|
|
14
15
|
|
|
15
16
|
## Missing Tests
|
|
16
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orchestrator-workflow",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "Installer for an orchestrator-led agent workflow: .ai/ run state, an AGENTS.md policy section, and per-harness subagent definitions for Claude Code, OpenAI Codex, and opencode",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|