@open-agent-toolkit/cli 0.2.3 → 0.2.5

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.
Files changed (22) hide show
  1. package/assets/agents/oat-reviewer.md +59 -3
  2. package/assets/docs/cli-utilities/project-log.md +16 -0
  3. package/assets/docs/workflows/projects/implementation-execution.md +30 -5
  4. package/assets/docs/workflows/projects/reviews.md +88 -1
  5. package/assets/public-package-versions.json +4 -4
  6. package/assets/skills/oat-dispatch-subagents/SKILL.md +90 -15
  7. package/assets/skills/oat-dispatch-subagents/references/provider-claude.md +21 -0
  8. package/assets/skills/oat-dispatch-subagents/references/provider-codex.md +22 -0
  9. package/assets/skills/oat-dispatch-subagents/references/provider-cursor.md +66 -15
  10. package/assets/skills/oat-dispatch-subagents/references/record-schema.md +63 -2
  11. package/assets/skills/oat-project-autonomous/references/gate-inventory.md +3 -1
  12. package/assets/skills/oat-project-document/references/docs/autonomy-contract.md +3 -1
  13. package/assets/skills/oat-project-implement/SKILL.md +14 -5
  14. package/assets/skills/oat-project-implement/references/completion-and-closeout.md +67 -9
  15. package/assets/skills/oat-project-implement/references/docs/autonomy-contract.md +3 -1
  16. package/assets/skills/oat-project-implement/references/phase-execution.md +35 -2
  17. package/assets/skills/oat-project-next/SKILL.md +31 -11
  18. package/assets/skills/oat-project-pr-final/references/docs/autonomy-contract.md +3 -1
  19. package/assets/skills/oat-project-quick-start/references/docs/autonomy-contract.md +3 -1
  20. package/assets/skills/oat-project-review-provide/SKILL.md +38 -2
  21. package/assets/templates/state.md +4 -1
  22. package/package.json +2 -2
@@ -132,8 +132,41 @@ handle. Only explicit pre-start rejection allows another route. Timeout,
132
132
  interruption, `BLOCKED`, or contract refusal is the review outcome and never a
133
133
  reason to replace an accepted reviewer.
134
134
 
135
- Validate artifact scope and commit range. Zero Critical and zero Important
136
- findings passes. Medium/Minor findings are recorded without blocking.
135
+ Before validating the review artifact scope or commit range, or updating any
136
+ project bookkeeping, consume the reviewer's brief artifact-mode confirmation.
137
+ It must contain exactly one of these exact lines:
138
+
139
+ - `**Reconnaissance:** attempted`
140
+ - `**Reconnaissance:** not-attempted`
141
+
142
+ A missing, duplicate, or invalid reconnaissance signal is an
143
+ incomplete-artifact error: stop and fail closed without validating the review
144
+ artifact, updating bookkeeping, or appending a project-log entry.
145
+
146
+ Use the valid signal to validate the review artifact's orchestration evidence:
147
+
148
+ - For `attempted`, require a complete `## Review Orchestration` section with
149
+ one compact account of every attempted wave: task class, classification
150
+ rationale, selected target, acceptance/outcome, floor satisfaction, fallback,
151
+ and primary reconciliation. Missing or incomplete evidence is an
152
+ incomplete-artifact error. After successful validation, append exactly once
153
+ through `oat project log append`, creating one concise structural entry that
154
+ references the review artifact path.
155
+ - For `not-attempted`, the artifact must not contain
156
+ `## Review Orchestration`; treat a present section as an inconsistent,
157
+ incomplete artifact. Do not append a log entry and do not invoke
158
+ `oat project log append`.
159
+
160
+ For the attempted branch, do not mirror individual worker records. Defer flags
161
+ and entry format to `oat project log append --help`; never pre-check project-log
162
+ configuration because the helper no-ops when logging is disabled. The reviewer
163
+ and workers never write `project-log.md` or append this entry.
164
+
165
+ After successful signal and orchestration validation, validate the review
166
+ artifact scope and commit range.
167
+
168
+ Zero Critical and zero Important findings passes. Medium/Minor findings are
169
+ recorded without blocking.
137
170
 
138
171
  #### Bounded Fix and Re-Review Loop
139
172
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: oat-project-next
3
- version: 1.0.10
3
+ version: 1.0.11
4
4
  description: Use when continuing work on the active OAT project. Reads project state, determines the next lifecycle action, and invokes the appropriate skill automatically.
5
5
  disable-model-invocation: true
6
6
  user-invocable: true
@@ -270,9 +270,13 @@ Before every other post-implementation route, inspect
270
270
  or not fresh, route to `oat-project-implement`.
271
271
 
272
272
  This override applies even when `oat_phase_status` is `complete` or `pr_open`,
273
- and before the summary, document, PR, or `oat-project-complete` routes. Announce
274
- exactly: "Implementation exit gate unresolved or stale resume with
275
- `oat-project-implement` before post-implementation routing."
273
+ and before the summary, document, PR, or `oat-project-complete` routes. When a
274
+ qualified allowed result matches but its rolling checkpoint trails HEAD,
275
+ announce exactly: "Implementation exit gate freshness checkpoint pending —
276
+ resume with `oat-project-implement` before post-implementation routing." For all
277
+ other unresolved or stale cases, announce exactly: "Implementation exit gate
278
+ unresolved or stale — resume with `oat-project-implement` before
279
+ post-implementation routing."
276
280
 
277
281
  Only an `allowed` and fresh exit-gate disposition falls through to the normal
278
282
  post-implementation checks.
@@ -282,11 +286,13 @@ alone:
282
286
 
283
287
  - `allowed/no_gate` is valid only with `disposition: no_gate`, null gate-run and
284
288
  artifact provenance, and current `reviewed_head` and implementation
285
- fingerprint fields.
289
+ fingerprint fields. Qualified state also requires `implementation_base_ref`,
290
+ `freshness_head`, and `freshness_fingerprint`.
286
291
  - `allowed/configured` is valid only with `disposition: passed`, `warned`, or
287
292
  `prompt_approved`; matching `config_fingerprint`, `reviewed_head`,
288
- `implementation_fingerprint`, and configured gate-run provenance; and any
289
- eligible receive durably completed.
293
+ `implementation_fingerprint`, configured gate-run provenance, and any eligible
294
+ receive durably completed. Qualified state also requires the complete rolling
295
+ freshness fields.
290
296
  - `pending`, `blocked`, malformed, contradictory, or legacy-absent state never
291
297
  falls through. Pending and blocked generations resume their persisted
292
298
  configuration; configuration-fingerprint mismatch fails closed.
@@ -294,10 +300,24 @@ alone:
294
300
  paths and substantive changes route as stale. The recognized set is limited
295
301
  to configured gate artifacts and receipts, project tracking and
296
302
  `project-log.md` appends, summary/documentation/PR sequence outputs, final
297
- HiLL bookkeeping, and completion bookkeeping.
298
- - Any implementation, test, skill, template, workflow configuration, or other
299
- unrecognized change after `reviewed_head` invalidates the implementation
300
- fingerprint and routes to `oat-project-implement`.
303
+ HiLL bookkeeping, and completion bookkeeping. A category match without its
304
+ persisted transition boundary is unknown, not closeout-only.
305
+ - For qualified state, require `implementation_base_ref`, `freshness_head`, and
306
+ a valid `freshness_fingerprint`. Exactly one merge base and 64-character
307
+ lowercase hexadecimal implementation/freshness digests are mandatory.
308
+ Missing or malformed inputs route as stale. When HEAD differs from
309
+ `freshness_head`, use the full raw Git byte algorithm from
310
+ `oat-project-implement` with only its literal state-carrier exclusion. Verify
311
+ and ignore state-only checkpoint commits before classification. An unchanged
312
+ qualified fingerprint preserves freshness across a merge, rebase, or base
313
+ update but routes to `oat-project-implement` to persist the advanced rolling
314
+ checkpoint; a mismatch routes as stale. This read-only router never advances
315
+ state or invents another fingerprint algorithm.
316
+ - Legacy unqualified fingerprints retain the closeout-only descendant-path
317
+ check. Any implementation, test, skill, template, workflow configuration, or
318
+ other unrecognized change after `reviewed_head` invalidates the implementation
319
+ fingerprint and routes to `oat-project-implement`. Do not reinterpret or
320
+ migrate legacy state while routing.
301
321
 
302
322
  Routing is read-only: announce stale or malformed state, but leave transition
303
323
  repair, gate execution, receive, and persistence to `oat-project-implement`.
@@ -231,7 +231,7 @@ remains immutable baseline evidence for the original p01-t01 verification.
231
231
  | `oat-project-design/references/selective-review-pass.md` | `d4956192b82e -> DES-06`; `7d6e1f926ecb -> DES-06`; `04f918a5fcac -> DES-07` |
232
232
  | `oat-project-plan/SKILL.md` | `5eb3949f32e1 -> NG`; `64a08153bb9e -> NG`; `655d61df0a8f -> NG`; `56b37486f09d -> PLAN-01`; `cf317c17c586 -> PLAN-02`; `781643b0f2c3 -> NG`; `01fd7cca8253 -> PLAN-04`; `7bc7fa3f2cbb -> NG`; `da28ce0a5f2e -> NG`; `e334f94c4d35 -> NG`; `1fa55762c038 -> NG`; `c0935b5484a2 -> NG`; `6008163054f8 -> PLAN-05`; `571271f4d71b -> PLAN-06`; `746b760289e4 -> PLAN-06`; `de195590ff83 -> NG`; `49640510829a -> PLAN-07`; `4bef7afa7a71 -> PLAN-08`; `e5886632533e -> PLAN-08`; `4cfe1df14372 -> NG`; `d116c97a500c -> PLAN-10`; `aa62facff547 -> PLAN-10`; `bee4c4aa34c6 -> NG`; `3f0b53056edd -> PLAN-11`; `1734b2c85c5d -> NG`; `b4af2220eb91 -> PLAN-11` |
233
233
  | `oat-project-import-plan/SKILL.md` | `f7ca8635452f -> NG`; `c2e5fa410069 -> NG`; `655d61df0a8f -> NG`; `b137f73db20c -> IMPORT-01`; `45b699c1c0b5 -> IMPORT-01`; `ba6d120791c1 -> IMPORT-01`; `070ebc5259af -> IMPORT-03`; `c11552696e2e -> IMPORT-03`; `cfe661966baf -> IMPORT-04`; `baa91c0a0bf8 -> NG`; `e364e84b2702 -> NG`; `39031985a945 -> IMPORT-06`; `f106aa29a217 -> IMPORT-07`; `65038450aee3 -> IMPORT-07`; `bee4c4aa34c6 -> NG`; `3f0b53056edd -> IMPORT-09` |
234
- | `oat-project-implement/SKILL.md` | `18980f6bc1a6 -> NG`; `ffb3af0ba8ef -> NG`; `e0355c7a05e9 -> IMPLEMENT-11+IMPLEMENT-13+IMPLEMENT-16`; `6296f41ae11c -> NG`; `a167d03559fa -> NG`; `cf317c17c586 -> IMPLEMENT-01`; `8ce8a09feca4 -> NG`; `bd0cb4988188 -> NG` |
234
+ | `oat-project-implement/SKILL.md` | `18980f6bc1a6 -> NG`; `ffb3af0ba8ef -> NG`; `e0355c7a05e9 -> IMPLEMENT-11+IMPLEMENT-13+IMPLEMENT-16`; `6296f41ae11c -> NG`; `a167d03559fa -> NG`; `cf317c17c586 -> IMPLEMENT-01`; `8ce8a09feca4 -> NG`; `bd0cb4988188 -> NG`; `28af4ee0055d -> NG` |
235
235
  | `oat-project-implement/references/completion-and-closeout.md` | `f7dab9c1f96c -> IMPLEMENT-12`; `c69c17a069a8 -> IMPLEMENT-14`; `a97fa5634a68 -> IMPLEMENT-14`; `3af58881811c -> IMPLEMENT-14`; `4203e1f49d0f -> IMPLEMENT-14`; `c3bd2458a3d3 -> IMPLEMENT-13`; `95b5eafc070d -> IMPLEMENT-13`; `25ecbe9c998b -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `f6f24fd71da4 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `f18283bc1cf9 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `2c1ffc4a82dd -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `3454a07aa843 -> IMPLEMENT-16`; `0d86e2098cfb -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `d5fe597d266f -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `55a152e944c1 -> IMPLEMENT-16`; `effac7cbd573 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `9d2a34d8b148 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `d27462aaed26 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `9d52ecb17268 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `5b91aabe3757 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `fd0ad919f702 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `63bf28df1474 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `a4ed471dbc78 -> IMPLEMENT-16`; `6b7a64cec6e5 -> IMPLEMENT-16`; `0a4fdba0ebc0 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `a5033c2aada5 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `e77609eddba0 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `351156e8dde4 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `51d45bd2bbd1 -> IMPLEMENT-16`; `f7796ffcc804 -> IMPLEMENT-16`; `990d730cb494 -> IMPLEMENT-16`; `6ed28bb7d384 -> IMPLEMENT-16`; `8b7d4b5bcf1b -> IMPLEMENT-16`; `88aad500e6e9 -> IMPLEMENT-16`; `877e3e3f9eda -> IMPLEMENT-16`; `fc03c97f834e -> IMPLEMENT-16`; `12939a3da5e0 -> IMPLEMENT-16`; `bdb418335a88 -> IMPLEMENT-16`; `fba97e596ebd -> IMPLEMENT-16`; `3d0b5e2f14f0 -> IMPLEMENT-17`; `87f1424a8692 -> NG`; `6b1ec05182f0 -> IMPLEMENT-11`; `e6d696a27c91 -> NG`; `c77f8ccb52ad -> NG`; `48de2614c0ba -> IMPLEMENT-11`; `32d53f5212e5 -> IMPLEMENT-11`; `7cdb4a9c57b7 -> IMPLEMENT-11`; `16ffc0aa099b -> IMPLEMENT-11`; `d6868ea10b3f -> IMPLEMENT-11`; `4f05ff5567be -> IMPLEMENT-11`; `c70b47ae7a6d -> IMPLEMENT-11`; `5fafd093b58e -> NG`; `567d43ab0c2e -> NG`; `21ceaf7e658a -> NG`; `249427a9f475 -> NG`; `8a7ec13a9b7c -> NG`; `9aeb7fce2012 -> IMPLEMENT-18`; `f11a7cdda220 -> IMPLEMENT-18`; `4523ac029152 -> NG`; `6e87b08c4046 -> NG`; `baa6052c7f0a -> IMPLEMENT-18`; `27d3fad116b1 -> IMPLEMENT-18`; `2cfbeb4388a5 -> IMPLEMENT-18`; `c56ea56a56db -> NG`; `43e2e3c1380d -> IMPLEMENT-17`; `b49690277fb5 -> NG`; `df12304d6a36 -> NG`; `52eacac11fef -> IMPLEMENT-17`; `60092df6b17b -> IMPLEMENT-17`; `361872c6b00e -> IMPLEMENT-17`; `d2bc711a75fb -> IMPLEMENT-17` |
236
236
  | `oat-project-implement/references/dispatch-and-dry-run.md` | `21b85f5e4daa -> IMPLEMENT-08`; `74c92b32bb2a -> IMPLEMENT-08`; `8efd2d0517ab -> IMPLEMENT-09`; `461ed9b3e495 -> IMPLEMENT-09`; `b5ad64fd744d -> NG`; `14ce436cfffa -> NG`; `043ca36da3e2 -> NG`; `a23e45c1dc8d -> NG`; `498143bb41a7 -> NG`; `4fe3eb179023 -> NG`; `7f75485e5a33 -> NG`; `8ec3a96df029 -> NG`; `16c3f96e758d -> NG`; `5915c41fe058 -> NG`; `f51e43eeac56 -> NG`; `fd41c25623cb -> NG`; `58a932ed6453 -> NG`; `4718bd3ce12d -> NG`; `58c444a2126b -> NG`; `2df3adae4120 -> NG`; `e75df892b55c -> NG` |
237
237
  | `oat-project-implement/references/docs/autonomy-contract.md` | `* -> NG` |
@@ -246,6 +246,8 @@ remains immutable baseline evidence for the original p01-t01 verification.
246
246
  | `oat-project-review-provide/SKILL.md` | `1f4b981cac8b -> NG`; `adaeca152bb2 -> NG`; `2f7c201c3c06 -> NG`; `88f79700afdc -> NG`; `655d61df0a8f -> NG`; `efafde9ef5a0 -> NG`; `d2a3861d6323 -> REVIEWPROVIDE-02`; `65f5b9cf49cd -> REVIEWPROVIDE-04`; `962cb38d246a -> REVIEWPROVIDE-04`; `1a568483ba0b -> REVIEWPROVIDE-04`; `610e27edfe85 -> REVIEWPROVIDE-04`; `fab62c510bd0 -> REVIEWPROVIDE-05`; `a9f30853c867 -> REVIEWPROVIDE-05`; `0929c916fc20 -> REVIEWPROVIDE-05`; `f9a37c63afab -> REVIEWPROVIDE-05`; `687bb9368f92 -> REVIEWPROVIDE-05`; `bb0096e95c47 -> REVIEWPROVIDE-06`; `55f6357a987d -> REVIEWPROVIDE-06`; `1bee61f8531c -> REVIEWPROVIDE-07`; `3d35091607a1 -> REVIEWPROVIDE-08`; `fb40c4341c4c -> NG`; `b22d16885150 -> NG`; `d2b25906242e -> REVIEWPROVIDE-08`; `fd8ebf72b3c4 -> NG`; `fcb9de611ff3 -> NG`; `d2a838dfb18d -> NG`; `c3d50ea7cf69 -> NG`; `09b1b8dd445c -> NG`; `7acc8f3718d2 -> REVIEWPROVIDE-09`; `b2fa883fc4a2 -> NG`; `fe4421531b4c -> NG` |
247
247
  | `oat-project-review-receive/SKILL.md` | `9b8a3743d626 -> NG`; `df49c8c6f192 -> NG`; `4ee8730382d3 -> NG`; `655d61df0a8f -> NG`; `765f897d67ac -> NG`; `53b58d16dd32 -> NG`; `fb8755a3bdf4 -> NG`; `c8ab5dd90075 -> NG`; `1f7dd98dff2f -> NG`; `56f78c6740e6 -> NG`; `76f5fb5a88cd -> NG`; `085abfa3599f -> REVIEWRECEIVE-01`; `3ad3aadb8c60 -> NG`; `a7d114059bb6 -> NG`; `ac88cfaa83d9 -> NG`; `3f758313fedb -> REVIEWRECEIVE-08`; `f31f07284718 -> REVIEWRECEIVE-02`; `aba178a21441 -> REVIEWRECEIVE-04`; `a37e601cd731 -> REVIEWRECEIVE-05`; `20e05e1a4381 -> REVIEWRECEIVE-06`; `90001dadf75f -> REVIEWRECEIVE-07`; `f8fd58180ecf -> NG`; `c3abcdc02d9f -> NG`; `f2ebdd6abb9b -> NG` |
248
248
  | `oat-project-review-provide/SKILL.md` | `2e794bf4fc4a -> REVIEWPROVIDE-08`; `5441ab977b46 -> REVIEWPROVIDE-08` |
249
+ | `oat-project-review-provide/SKILL.md` | `f4238ebb1887 -> NG`; `0360fa2db9a5 -> NG` |
250
+ | `oat-project-implement/references/phase-execution.md` | `b31a9a4e6f75 -> NG` |
249
251
  | `oat-dispatch-subagents/SKILL.md` | `49987359dc09 -> NG` |
250
252
  | `oat-dispatch-subagents/references/provider-claude.md` | `06f64bd01ba6 -> NG` |
251
253
  | `oat-dispatch-subagents/SKILL.md` | `cb4f86157fd6 -> DISPATCH-01`; `f165b1626192 -> DISPATCH-01`; `7ed5e2b1eb71 -> PDISPATCH-01`; `11c72bcdebad -> DISPATCH-02`; `0834ee701e12 -> DISPATCH-02`; `7fda54e1d519 -> PDISPATCH-01` |
@@ -231,7 +231,7 @@ remains immutable baseline evidence for the original p01-t01 verification.
231
231
  | `oat-project-design/references/selective-review-pass.md` | `d4956192b82e -> DES-06`; `7d6e1f926ecb -> DES-06`; `04f918a5fcac -> DES-07` |
232
232
  | `oat-project-plan/SKILL.md` | `5eb3949f32e1 -> NG`; `64a08153bb9e -> NG`; `655d61df0a8f -> NG`; `56b37486f09d -> PLAN-01`; `cf317c17c586 -> PLAN-02`; `781643b0f2c3 -> NG`; `01fd7cca8253 -> PLAN-04`; `7bc7fa3f2cbb -> NG`; `da28ce0a5f2e -> NG`; `e334f94c4d35 -> NG`; `1fa55762c038 -> NG`; `c0935b5484a2 -> NG`; `6008163054f8 -> PLAN-05`; `571271f4d71b -> PLAN-06`; `746b760289e4 -> PLAN-06`; `de195590ff83 -> NG`; `49640510829a -> PLAN-07`; `4bef7afa7a71 -> PLAN-08`; `e5886632533e -> PLAN-08`; `4cfe1df14372 -> NG`; `d116c97a500c -> PLAN-10`; `aa62facff547 -> PLAN-10`; `bee4c4aa34c6 -> NG`; `3f0b53056edd -> PLAN-11`; `1734b2c85c5d -> NG`; `b4af2220eb91 -> PLAN-11` |
233
233
  | `oat-project-import-plan/SKILL.md` | `f7ca8635452f -> NG`; `c2e5fa410069 -> NG`; `655d61df0a8f -> NG`; `b137f73db20c -> IMPORT-01`; `45b699c1c0b5 -> IMPORT-01`; `ba6d120791c1 -> IMPORT-01`; `070ebc5259af -> IMPORT-03`; `c11552696e2e -> IMPORT-03`; `cfe661966baf -> IMPORT-04`; `baa91c0a0bf8 -> NG`; `e364e84b2702 -> NG`; `39031985a945 -> IMPORT-06`; `f106aa29a217 -> IMPORT-07`; `65038450aee3 -> IMPORT-07`; `bee4c4aa34c6 -> NG`; `3f0b53056edd -> IMPORT-09` |
234
- | `oat-project-implement/SKILL.md` | `18980f6bc1a6 -> NG`; `ffb3af0ba8ef -> NG`; `e0355c7a05e9 -> IMPLEMENT-11+IMPLEMENT-13+IMPLEMENT-16`; `6296f41ae11c -> NG`; `a167d03559fa -> NG`; `cf317c17c586 -> IMPLEMENT-01`; `8ce8a09feca4 -> NG`; `bd0cb4988188 -> NG` |
234
+ | `oat-project-implement/SKILL.md` | `18980f6bc1a6 -> NG`; `ffb3af0ba8ef -> NG`; `e0355c7a05e9 -> IMPLEMENT-11+IMPLEMENT-13+IMPLEMENT-16`; `6296f41ae11c -> NG`; `a167d03559fa -> NG`; `cf317c17c586 -> IMPLEMENT-01`; `8ce8a09feca4 -> NG`; `bd0cb4988188 -> NG`; `28af4ee0055d -> NG` |
235
235
  | `oat-project-implement/references/completion-and-closeout.md` | `f7dab9c1f96c -> IMPLEMENT-12`; `c69c17a069a8 -> IMPLEMENT-14`; `a97fa5634a68 -> IMPLEMENT-14`; `3af58881811c -> IMPLEMENT-14`; `4203e1f49d0f -> IMPLEMENT-14`; `c3bd2458a3d3 -> IMPLEMENT-13`; `95b5eafc070d -> IMPLEMENT-13`; `25ecbe9c998b -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `f6f24fd71da4 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `f18283bc1cf9 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `2c1ffc4a82dd -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `3454a07aa843 -> IMPLEMENT-16`; `0d86e2098cfb -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `d5fe597d266f -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `55a152e944c1 -> IMPLEMENT-16`; `effac7cbd573 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `9d2a34d8b148 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `d27462aaed26 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `9d52ecb17268 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `5b91aabe3757 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `fd0ad919f702 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `63bf28df1474 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `a4ed471dbc78 -> IMPLEMENT-16`; `6b7a64cec6e5 -> IMPLEMENT-16`; `0a4fdba0ebc0 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `a5033c2aada5 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `e77609eddba0 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `351156e8dde4 -> IMPLEMENT-13+IMPLEMENT-14+IMPLEMENT-15+IMPLEMENT-16`; `51d45bd2bbd1 -> IMPLEMENT-16`; `f7796ffcc804 -> IMPLEMENT-16`; `990d730cb494 -> IMPLEMENT-16`; `6ed28bb7d384 -> IMPLEMENT-16`; `8b7d4b5bcf1b -> IMPLEMENT-16`; `88aad500e6e9 -> IMPLEMENT-16`; `877e3e3f9eda -> IMPLEMENT-16`; `fc03c97f834e -> IMPLEMENT-16`; `12939a3da5e0 -> IMPLEMENT-16`; `bdb418335a88 -> IMPLEMENT-16`; `fba97e596ebd -> IMPLEMENT-16`; `3d0b5e2f14f0 -> IMPLEMENT-17`; `87f1424a8692 -> NG`; `6b1ec05182f0 -> IMPLEMENT-11`; `e6d696a27c91 -> NG`; `c77f8ccb52ad -> NG`; `48de2614c0ba -> IMPLEMENT-11`; `32d53f5212e5 -> IMPLEMENT-11`; `7cdb4a9c57b7 -> IMPLEMENT-11`; `16ffc0aa099b -> IMPLEMENT-11`; `d6868ea10b3f -> IMPLEMENT-11`; `4f05ff5567be -> IMPLEMENT-11`; `c70b47ae7a6d -> IMPLEMENT-11`; `5fafd093b58e -> NG`; `567d43ab0c2e -> NG`; `21ceaf7e658a -> NG`; `249427a9f475 -> NG`; `8a7ec13a9b7c -> NG`; `9aeb7fce2012 -> IMPLEMENT-18`; `f11a7cdda220 -> IMPLEMENT-18`; `4523ac029152 -> NG`; `6e87b08c4046 -> NG`; `baa6052c7f0a -> IMPLEMENT-18`; `27d3fad116b1 -> IMPLEMENT-18`; `2cfbeb4388a5 -> IMPLEMENT-18`; `c56ea56a56db -> NG`; `43e2e3c1380d -> IMPLEMENT-17`; `b49690277fb5 -> NG`; `df12304d6a36 -> NG`; `52eacac11fef -> IMPLEMENT-17`; `60092df6b17b -> IMPLEMENT-17`; `361872c6b00e -> IMPLEMENT-17`; `d2bc711a75fb -> IMPLEMENT-17` |
236
236
  | `oat-project-implement/references/dispatch-and-dry-run.md` | `21b85f5e4daa -> IMPLEMENT-08`; `74c92b32bb2a -> IMPLEMENT-08`; `8efd2d0517ab -> IMPLEMENT-09`; `461ed9b3e495 -> IMPLEMENT-09`; `b5ad64fd744d -> NG`; `14ce436cfffa -> NG`; `043ca36da3e2 -> NG`; `a23e45c1dc8d -> NG`; `498143bb41a7 -> NG`; `4fe3eb179023 -> NG`; `7f75485e5a33 -> NG`; `8ec3a96df029 -> NG`; `16c3f96e758d -> NG`; `5915c41fe058 -> NG`; `f51e43eeac56 -> NG`; `fd41c25623cb -> NG`; `58a932ed6453 -> NG`; `4718bd3ce12d -> NG`; `58c444a2126b -> NG`; `2df3adae4120 -> NG`; `e75df892b55c -> NG` |
237
237
  | `oat-project-implement/references/docs/autonomy-contract.md` | `* -> NG` |
@@ -246,6 +246,8 @@ remains immutable baseline evidence for the original p01-t01 verification.
246
246
  | `oat-project-review-provide/SKILL.md` | `1f4b981cac8b -> NG`; `adaeca152bb2 -> NG`; `2f7c201c3c06 -> NG`; `88f79700afdc -> NG`; `655d61df0a8f -> NG`; `efafde9ef5a0 -> NG`; `d2a3861d6323 -> REVIEWPROVIDE-02`; `65f5b9cf49cd -> REVIEWPROVIDE-04`; `962cb38d246a -> REVIEWPROVIDE-04`; `1a568483ba0b -> REVIEWPROVIDE-04`; `610e27edfe85 -> REVIEWPROVIDE-04`; `fab62c510bd0 -> REVIEWPROVIDE-05`; `a9f30853c867 -> REVIEWPROVIDE-05`; `0929c916fc20 -> REVIEWPROVIDE-05`; `f9a37c63afab -> REVIEWPROVIDE-05`; `687bb9368f92 -> REVIEWPROVIDE-05`; `bb0096e95c47 -> REVIEWPROVIDE-06`; `55f6357a987d -> REVIEWPROVIDE-06`; `1bee61f8531c -> REVIEWPROVIDE-07`; `3d35091607a1 -> REVIEWPROVIDE-08`; `fb40c4341c4c -> NG`; `b22d16885150 -> NG`; `d2b25906242e -> REVIEWPROVIDE-08`; `fd8ebf72b3c4 -> NG`; `fcb9de611ff3 -> NG`; `d2a838dfb18d -> NG`; `c3d50ea7cf69 -> NG`; `09b1b8dd445c -> NG`; `7acc8f3718d2 -> REVIEWPROVIDE-09`; `b2fa883fc4a2 -> NG`; `fe4421531b4c -> NG` |
247
247
  | `oat-project-review-receive/SKILL.md` | `9b8a3743d626 -> NG`; `df49c8c6f192 -> NG`; `4ee8730382d3 -> NG`; `655d61df0a8f -> NG`; `765f897d67ac -> NG`; `53b58d16dd32 -> NG`; `fb8755a3bdf4 -> NG`; `c8ab5dd90075 -> NG`; `1f7dd98dff2f -> NG`; `56f78c6740e6 -> NG`; `76f5fb5a88cd -> NG`; `085abfa3599f -> REVIEWRECEIVE-01`; `3ad3aadb8c60 -> NG`; `a7d114059bb6 -> NG`; `ac88cfaa83d9 -> NG`; `3f758313fedb -> REVIEWRECEIVE-08`; `f31f07284718 -> REVIEWRECEIVE-02`; `aba178a21441 -> REVIEWRECEIVE-04`; `a37e601cd731 -> REVIEWRECEIVE-05`; `20e05e1a4381 -> REVIEWRECEIVE-06`; `90001dadf75f -> REVIEWRECEIVE-07`; `f8fd58180ecf -> NG`; `c3abcdc02d9f -> NG`; `f2ebdd6abb9b -> NG` |
248
248
  | `oat-project-review-provide/SKILL.md` | `2e794bf4fc4a -> REVIEWPROVIDE-08`; `5441ab977b46 -> REVIEWPROVIDE-08` |
249
+ | `oat-project-review-provide/SKILL.md` | `f4238ebb1887 -> NG`; `0360fa2db9a5 -> NG` |
250
+ | `oat-project-implement/references/phase-execution.md` | `b31a9a4e6f75 -> NG` |
249
251
  | `oat-dispatch-subagents/SKILL.md` | `49987359dc09 -> NG` |
250
252
  | `oat-dispatch-subagents/references/provider-claude.md` | `06f64bd01ba6 -> NG` |
251
253
  | `oat-dispatch-subagents/SKILL.md` | `cb4f86157fd6 -> DISPATCH-01`; `f165b1626192 -> DISPATCH-01`; `7ed5e2b1eb71 -> PDISPATCH-01`; `11c72bcdebad -> DISPATCH-02`; `0834ee701e12 -> DISPATCH-02`; `7fda54e1d519 -> PDISPATCH-01` |
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: oat-project-review-provide
3
- version: 1.3.21
3
+ version: 1.3.22
4
4
  description: Use when the user explicitly asks to review an OAT project — e.g. "review project", "review the project", "run project review", or confirms a previously offered review. Do NOT auto-invoke on completed work alone. Resolves a project review scope and offers before running.
5
5
  disable-model-invocation: false
6
6
  user-invocable: true
@@ -732,7 +732,8 @@ After the subagent completes:
732
732
  blocks the review; do not invoke fallback and do not infer a pass from a
733
733
  missing review artifact or absent findings.
734
734
  - Verify the review artifact was written to the expected path
735
- - Continue with Step 9 (plan update) and Step 9.5 (commit)
735
+ - Continue with Step 8.5 (artifact/orchestration validation), Step 9 (plan
736
+ update), and Step 9.5 (commit)
736
737
 
737
738
  **Step 6c: Tier 2 — Fresh Session (recommended fallback)**
738
739
 
@@ -907,6 +908,41 @@ Run the `oat-project-review-receive` skill to convert findings into plan tasks.
907
908
 
908
909
  ```
909
910
 
911
+ ### Step 8.5: Validate Review Orchestration and Append Root Log
912
+
913
+ If `INLINE_ONLY=true`, skip this step because no review artifact or
914
+ artifact-mode confirmation exists.
915
+
916
+ Before validating the review artifact or updating project bookkeeping, consume
917
+ the reviewer's brief artifact-mode confirmation. It must contain exactly one of
918
+ these exact lines:
919
+
920
+ - `**Reconnaissance:** attempted`
921
+ - `**Reconnaissance:** not-attempted`
922
+
923
+ A missing, duplicate, or invalid reconnaissance signal is an
924
+ incomplete-artifact error: stop and fail closed without updating bookkeeping or
925
+ appending a project-log entry.
926
+
927
+ Use the valid signal to validate the review artifact's orchestration evidence:
928
+
929
+ - For `attempted`, require a complete `## Review Orchestration` section with
930
+ one compact account of every attempted wave: task class, classification
931
+ rationale, selected target, acceptance/outcome, floor satisfaction, fallback,
932
+ and primary reconciliation. Missing or incomplete evidence is an
933
+ incomplete-artifact error. After successful validation, append exactly once
934
+ through `oat project log append`, creating one concise structural entry that
935
+ references the review artifact path.
936
+ - For `not-attempted`, the artifact must not contain
937
+ `## Review Orchestration`; treat a present section as an inconsistent,
938
+ incomplete artifact. Do not append a log entry and do not invoke
939
+ `oat project log append`.
940
+
941
+ For the attempted branch, do not duplicate individual worker records. Defer
942
+ flags and entry format to `oat project log append --help`; never pre-check
943
+ project-log configuration because the helper no-ops when logging is disabled.
944
+ The reviewer and workers never write `project-log.md` or append this entry.
945
+
910
946
  ### Step 9: Update Plan Reviews Section
911
947
 
912
948
  After review artifact is written, update `plan.md` `## Reviews` table _if plan.md exists_.
@@ -40,7 +40,10 @@ oat_workflow_origin: native # native | imported
40
40
  # max_attempts: 2
41
41
  # attempts_completed: 0
42
42
  # reviewed_head: null
43
- # implementation_fingerprint: null
43
+ # implementation_base_ref: null # exact logical base ref for effective-delta-v1
44
+ # implementation_fingerprint: null # new generations use sha256:effective-delta-v1:<digest>
45
+ # freshness_head: null # rolling accepted tree checkpoint
46
+ # freshness_fingerprint: null # full effective delta at freshness_head
44
47
  # launch_state: not_started # not_started | intent_persisted | accepted | result_persisted | not_accepted
45
48
  # launch_attempt_id: null
46
49
  # launch_started_at: null
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-agent-toolkit/cli",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "private": false,
5
5
  "description": "Open Agent Toolkit CLI",
6
6
  "homepage": "https://github.com/voxmedia/open-agent-toolkit/tree/main/packages/cli",
@@ -34,7 +34,7 @@
34
34
  "ora": "^9.0.0",
35
35
  "yaml": "2.8.2",
36
36
  "zod": "^3.25.76",
37
- "@open-agent-toolkit/control-plane": "0.2.3"
37
+ "@open-agent-toolkit/control-plane": "0.2.5"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/node": "^22.10.0",