orchestrator-workflow 0.6.0 → 0.7.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
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `orchestrator-workflow` are documented here.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.7.0] - 2026-06-22
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Machine-readable solution-acceptance status markers in the run templates:
|
|
13
|
+
`06-handoff.md` carries a `<!-- solution-acceptance: final-status = TODO -->`
|
|
14
|
+
line and `05-review-findings.md` carries a
|
|
15
|
+
`<!-- solution-acceptance: acceptance-recommendation = TODO -->` line. The
|
|
16
|
+
orchestrator replaces the `TODO` sentinel with the chosen enum value when
|
|
17
|
+
finalizing the handoff/review. This is the run-gate contract the harness
|
|
18
|
+
solution-acceptance gate reads, so a freshly-copied run is non-accepting by
|
|
19
|
+
construction (fail-closed). SKILL.md documents the finalization step.
|
|
20
|
+
|
|
21
|
+
## [0.6.0]
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Portable opencode model resolution (#62).
|
|
26
|
+
|
|
27
|
+
## [0.5.0]
|
|
28
|
+
|
|
29
|
+
### Added
|
|
30
|
+
|
|
31
|
+
- Instruction trust boundary for the workflow, policy, and agent prompts (#55).
|
|
32
|
+
|
|
33
|
+
## [0.4.0]
|
|
34
|
+
|
|
35
|
+
### Added
|
|
36
|
+
|
|
37
|
+
- Read-only explorer/discovery role (#52).
|
|
38
|
+
|
|
39
|
+
## [0.3.0]
|
|
40
|
+
|
|
41
|
+
### Added
|
|
42
|
+
|
|
43
|
+
- Proportionality rule for delegation (#51).
|
|
44
|
+
|
|
45
|
+
## [0.2.0]
|
|
46
|
+
|
|
47
|
+
### Added
|
|
48
|
+
|
|
49
|
+
- Target-directory transparency and an `uninstall` command (#50).
|
|
50
|
+
|
|
51
|
+
## [0.1.0]
|
|
52
|
+
|
|
53
|
+
### Added
|
|
54
|
+
|
|
55
|
+
- Initial `orchestrator-workflow` package: `.ai/` run state, an `AGENTS.md`
|
|
56
|
+
policy section, and per-harness subagent definitions (#47).
|
package/assets/skill/SKILL.md
CHANGED
|
@@ -106,6 +106,12 @@ directory and the subagents.
|
|
|
106
106
|
9. **Hand off.** Fill `06-handoff.md` and report to the operator: what changed,
|
|
107
107
|
why, how it was verified, known risks, accepted waivers, suggested next step.
|
|
108
108
|
|
|
109
|
+
When finalizing `05-review-findings.md` and `06-handoff.md`, replace the `TODO`
|
|
110
|
+
in each `<!-- solution-acceptance: ... = TODO -->` marker with the chosen enum
|
|
111
|
+
value. That marker line is the machine-readable signal the harness
|
|
112
|
+
solution-acceptance run-gate reads, so leaving it as `TODO` keeps the run
|
|
113
|
+
non-accepting (fail-closed).
|
|
114
|
+
|
|
109
115
|
## Explorer output contract
|
|
110
116
|
|
|
111
117
|
```yaml
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orchestrator-workflow",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.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",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"dist",
|
|
12
12
|
"assets",
|
|
13
13
|
"README.md",
|
|
14
|
-
"INSTALL-AGENT.md"
|
|
14
|
+
"INSTALL-AGENT.md",
|
|
15
|
+
"CHANGELOG.md"
|
|
15
16
|
],
|
|
16
17
|
"scripts": {
|
|
17
18
|
"build": "tsc",
|