orchestrator-workflow 0.11.0 → 0.12.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 +24 -0
- package/assets/skill/SKILL.md +9 -2
- package/assets/templates/06-handoff.md +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,30 @@ 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.12.0] - 2026-07-16
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- `SKILL.md`'s Hand off step (9) gains an optional bundle-upkeep hook,
|
|
13
|
+
symmetric to the 0.8.0 discovery-side rule: when the repo carries a
|
|
14
|
+
curated knowledge bundle (for example a `docs/okf/` directory with an
|
|
15
|
+
index), the orchestrator checks before handoff whether the change touches
|
|
16
|
+
paths any bundle doc claims as sources, and if so either updates the
|
|
17
|
+
affected docs (re-verify and re-stamp) or records a follow-up task, and
|
|
18
|
+
runs the bundle validator when one is available (for example `okf-kit
|
|
19
|
+
check`). The hook is optional guidance, never a gate: repos without a
|
|
20
|
+
bundle are unaffected. `06-handoff.md` gained a matching optional
|
|
21
|
+
"Knowledge Bundle" section so the outcome (updated / not affected /
|
|
22
|
+
follow-up filed) is recorded alongside the rest of the handoff. Motivated
|
|
23
|
+
by the OKF initiative's Phase 3 evidence: four upkeep sweeps on 2026-07-16
|
|
24
|
+
found 48/24/11/8 stale claims accumulated in the four oldest bundles, with
|
|
25
|
+
warn-only drift CI already live in 8 repos — discovery-side consumption
|
|
26
|
+
shipped in 0.8.0 and named this hook as its symmetric, still-missing,
|
|
27
|
+
loop-closer. Docs-consistency tests pin the hook's source-overlap check,
|
|
28
|
+
its two responses, the validator run, and its explicit non-gate
|
|
29
|
+
optionality, plus the handoff template's new section and outcome
|
|
30
|
+
vocabulary.
|
|
31
|
+
|
|
8
32
|
## [0.11.0] - 2026-07-16
|
|
9
33
|
|
|
10
34
|
### Added
|
package/assets/skill/SKILL.md
CHANGED
|
@@ -125,8 +125,15 @@ directory and the subagents.
|
|
|
125
125
|
or critical finding counts as a waiver and follows the same rules. Record
|
|
126
126
|
all decisions and waivers in `03-decisions.md` and summarize waivers in
|
|
127
127
|
the Accepted Waivers section of `06-handoff.md`.
|
|
128
|
-
9. **Hand off.**
|
|
129
|
-
|
|
128
|
+
9. **Hand off.** Before filling `06-handoff.md`, apply this optional
|
|
129
|
+
guidance: when the repo carries a curated knowledge bundle (for example a
|
|
130
|
+
`docs/okf/` directory with an index), check whether the change touches
|
|
131
|
+
paths any bundle doc claims as sources; if so, update the affected docs
|
|
132
|
+
(re-verify and re-stamp) or record a follow-up task, and run the bundle
|
|
133
|
+
validator when one is available (for example `okf-kit check`). Repos
|
|
134
|
+
without a bundle are unaffected. Then fill `06-handoff.md` and report to the
|
|
135
|
+
operator: what changed, why, how it was verified, known risks, accepted
|
|
136
|
+
waivers, suggested next step.
|
|
130
137
|
|
|
131
138
|
When finalizing `05-review-findings.md` and `06-handoff.md`, replace the `TODO`
|
|
132
139
|
in each `<!-- solution-acceptance: ... = TODO -->` marker with the chosen enum
|
|
@@ -24,6 +24,14 @@
|
|
|
24
24
|
|---|---|---|---|
|
|
25
25
|
| <!-- finding --> | high/critical | <!-- rationale --> | operator/orchestrator |
|
|
26
26
|
|
|
27
|
+
## Knowledge Bundle
|
|
28
|
+
|
|
29
|
+
<!-- Optional: only applies when the repo carries a curated knowledge bundle
|
|
30
|
+
(for example a docs/okf/ directory). Outcome: updated | not affected |
|
|
31
|
+
follow-up filed. -->
|
|
32
|
+
|
|
33
|
+
- <!-- outcome and brief note, or omit this section when the repo carries no bundle -->
|
|
34
|
+
|
|
27
35
|
## Follow-Ups
|
|
28
36
|
|
|
29
37
|
- <!-- next steps or none -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orchestrator-workflow",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.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",
|