@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.
- package/assets/agents/oat-reviewer.md +59 -3
- package/assets/docs/cli-utilities/project-log.md +16 -0
- package/assets/docs/workflows/projects/implementation-execution.md +30 -5
- package/assets/docs/workflows/projects/reviews.md +88 -1
- package/assets/public-package-versions.json +4 -4
- package/assets/skills/oat-dispatch-subagents/SKILL.md +90 -15
- package/assets/skills/oat-dispatch-subagents/references/provider-claude.md +21 -0
- package/assets/skills/oat-dispatch-subagents/references/provider-codex.md +22 -0
- package/assets/skills/oat-dispatch-subagents/references/provider-cursor.md +66 -15
- package/assets/skills/oat-dispatch-subagents/references/record-schema.md +63 -2
- package/assets/skills/oat-project-autonomous/references/gate-inventory.md +3 -1
- package/assets/skills/oat-project-document/references/docs/autonomy-contract.md +3 -1
- package/assets/skills/oat-project-implement/SKILL.md +14 -5
- package/assets/skills/oat-project-implement/references/completion-and-closeout.md +67 -9
- package/assets/skills/oat-project-implement/references/docs/autonomy-contract.md +3 -1
- package/assets/skills/oat-project-implement/references/phase-execution.md +35 -2
- package/assets/skills/oat-project-next/SKILL.md +31 -11
- package/assets/skills/oat-project-pr-final/references/docs/autonomy-contract.md +3 -1
- package/assets/skills/oat-project-quick-start/references/docs/autonomy-contract.md +3 -1
- package/assets/skills/oat-project-review-provide/SKILL.md +38 -2
- package/assets/templates/state.md +4 -1
- package/package.json +2 -2
|
@@ -37,6 +37,28 @@ escalate_when:
|
|
|
37
37
|
`dispatch_policy` and `dispatch_ceiling` are optional resolved inputs. The
|
|
38
38
|
general engine does not resolve their source.
|
|
39
39
|
|
|
40
|
+
Task-class metadata is also generic-optional. A class-constrained caller adds
|
|
41
|
+
all of these fields; `oat-reviewer` requires them for reviewer-local recon:
|
|
42
|
+
|
|
43
|
+
```yaml
|
|
44
|
+
task_class: intelligent-recon
|
|
45
|
+
classification_source: caller
|
|
46
|
+
classification_reason: >-
|
|
47
|
+
Determining whether semantic tests pin safety boundaries requires
|
|
48
|
+
interpretation, and a silent miss would survive mechanical checks.
|
|
49
|
+
fallback:
|
|
50
|
+
mode: caller-inline
|
|
51
|
+
allow_below_task_class_floor: false
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
`task_class` is one of `mechanical-recon`, `intelligent-recon`,
|
|
55
|
+
`default-implementation`, `hard-reasoning`, or `consequential`.
|
|
56
|
+
`classification_source` is the literal `caller`, and
|
|
57
|
+
`classification_reason` is non-empty. Legacy callers may omit all three and
|
|
58
|
+
retain the original role-based selection and fallback behavior. The legacy
|
|
59
|
+
`explicit-downgrade` example above is valid only for an unconstrained request
|
|
60
|
+
without task-class metadata or a declared class floor.
|
|
61
|
+
|
|
40
62
|
## Record
|
|
41
63
|
|
|
42
64
|
```yaml
|
|
@@ -76,6 +98,41 @@ diagnostics: []
|
|
|
76
98
|
continuation_events: []
|
|
77
99
|
```
|
|
78
100
|
|
|
101
|
+
For a class-constrained dispatch, the record also includes:
|
|
102
|
+
|
|
103
|
+
```yaml
|
|
104
|
+
task_class: intelligent-recon
|
|
105
|
+
model_class_floor: intelligent-recon
|
|
106
|
+
classification_source: caller
|
|
107
|
+
classification_reason: Semantic contract interpretation has silent-miss risk.
|
|
108
|
+
floor_satisfaction: satisfied
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
`model_class_floor` equals the requested `task_class`.
|
|
112
|
+
`floor_satisfaction` is `satisfied` or `unsatisfied`. An unsatisfied floor
|
|
113
|
+
blocks launch and records no weaker selection as success. These five fields
|
|
114
|
+
remain absent when a legacy request omits task-class metadata.
|
|
115
|
+
|
|
116
|
+
For a Cursor reviewer-local request whose advertised nested model choices do
|
|
117
|
+
not satisfy the class floor, record the blocked selection without inventing a
|
|
118
|
+
selector:
|
|
119
|
+
|
|
120
|
+
```yaml
|
|
121
|
+
role_selector: generalPurpose
|
|
122
|
+
model_selector: null
|
|
123
|
+
model_selector_granularity: exact-native-model-choice
|
|
124
|
+
floor_satisfaction: unsatisfied
|
|
125
|
+
fallback:
|
|
126
|
+
mode: caller-inline
|
|
127
|
+
allow_below_task_class_floor: false
|
|
128
|
+
launch_status: blocked-before-start
|
|
129
|
+
child_outcome: caller-inline-completed
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
`exact-native-model-choice` means an exact model choice advertised by the
|
|
133
|
+
current nested dispatcher. It does not imply a stable enum or authorize
|
|
134
|
+
reconstruction of a materialized lifecycle variant.
|
|
135
|
+
|
|
79
136
|
`role_selector` is the exact provider or harness agent-type selector, when that
|
|
80
137
|
surface exists. Preserve opaque selectors byte-for-byte.
|
|
81
138
|
|
|
@@ -98,6 +155,8 @@ selection source.
|
|
|
98
155
|
wave_id: repo-audit-wave-1
|
|
99
156
|
scope: repo:packages/cli
|
|
100
157
|
shared_dispatch_record: dispatch-unique-id
|
|
158
|
+
task_class: intelligent-recon
|
|
159
|
+
model_class_floor: intelligent-recon
|
|
101
160
|
lanes:
|
|
102
161
|
- lane_id: correctness
|
|
103
162
|
scope: packages/cli/src
|
|
@@ -110,5 +169,7 @@ lanes:
|
|
|
110
169
|
```
|
|
111
170
|
|
|
112
171
|
The wave scope is the aggregate boundary. Lane scope may narrow it. Use one
|
|
113
|
-
shared record only when every dispatch axis listed in the main skill
|
|
114
|
-
identical.
|
|
172
|
+
shared record only when every dispatch axis listed in the main skill,
|
|
173
|
+
`task_class`, and `model_class_floor` are identical. Lane entries do not
|
|
174
|
+
redefine the shared class fields. Mixed classes require separate records and
|
|
175
|
+
waves.
|
|
@@ -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-implement
|
|
3
|
-
version: 2.1.
|
|
3
|
+
version: 2.1.6
|
|
4
4
|
description: Use when plan.md is ready for execution. Dispatches one phase implementer per phase, owns independent phase review and bounded fix routing, and supports plan-declared worktree-isolated parallel phases.
|
|
5
5
|
oat_gateable: true
|
|
6
6
|
argument-hint: '[--retry-limit <N>] [--dry-run]'
|
|
@@ -37,13 +37,22 @@ merge provider mechanics.
|
|
|
37
37
|
|
|
38
38
|
## Project Log Append Points
|
|
39
39
|
|
|
40
|
-
|
|
41
|
-
format to `oat project log append --help`. Never pre-check project-log config:
|
|
40
|
+
Defer entry flags to `oat project log append --help`; never pre-check config:
|
|
42
41
|
the helper no-ops when the feature is off.
|
|
43
42
|
|
|
44
|
-
- After every accepted subagent dispatch,
|
|
45
|
-
a structural stamp that references the corresponding run record by
|
|
43
|
+
- After every accepted subagent dispatch, use `oat project log append` at
|
|
46
44
|
`$PROJECT_PATH/implementation.md#<run-anchor>`; never mirror that record.
|
|
45
|
+
- Before validating the review artifact or updating project bookkeeping, consume
|
|
46
|
+
exactly one brief artifact-mode confirmation of reconnaissance:
|
|
47
|
+
- `**Reconnaissance:** attempted`
|
|
48
|
+
- `**Reconnaissance:** not-attempted`
|
|
49
|
+
Missing, duplicate, or invalid signals are incomplete-artifact errors: stop
|
|
50
|
+
and fail closed before validation, bookkeeping, or logging.
|
|
51
|
+
- For `attempted`, require complete `## Review Orchestration` evidence. After
|
|
52
|
+
validation, append exactly once through `oat project log append`, referencing
|
|
53
|
+
the artifact without copying records.
|
|
54
|
+
- For `not-attempted`, the artifact must not contain `## Review Orchestration`;
|
|
55
|
+
do not invoke `oat project log append` or create a log entry.
|
|
47
56
|
- Before every STOP or park return, invoke `oat project log append` for a
|
|
48
57
|
structural entry naming the triggering condition.
|
|
49
58
|
- After every phase outcome, invoke `oat project log append` for a structural
|
|
@@ -310,7 +310,10 @@ oat_implement_exit_gate:
|
|
|
310
310
|
max_attempts: 2
|
|
311
311
|
attempts_completed: 0
|
|
312
312
|
reviewed_head: null
|
|
313
|
+
implementation_base_ref: null
|
|
313
314
|
implementation_fingerprint: null
|
|
315
|
+
freshness_head: null
|
|
316
|
+
freshness_fingerprint: null
|
|
314
317
|
launch_state: not_started # not_started | intent_persisted | accepted | result_persisted | not_accepted
|
|
315
318
|
launch_attempt_id: null
|
|
316
319
|
launch_started_at: null
|
|
@@ -343,6 +346,29 @@ pending` before any gate launch. Missing state means unresolved, never no gate.
|
|
|
343
346
|
A `null` resolution persists `allowed/no_gate` with `disposition: no_gate`,
|
|
344
347
|
null run/artifact/receive provenance, and the current implementation basis.
|
|
345
348
|
|
|
349
|
+
New generations persist `implementation_fingerprint` as
|
|
350
|
+
`sha256:effective-delta-v1:<digest>`. Resolve the logical integration base from
|
|
351
|
+
the tracked PR's exact base ref, then the repository's configured remote default
|
|
352
|
+
branch; missing or ambiguous resolution fails closed. Persist the logical base
|
|
353
|
+
ref as `implementation_base_ref`; require exactly one merge base between that
|
|
354
|
+
ref and each compared HEAD.
|
|
355
|
+
|
|
356
|
+
Prefix the fingerprint input with the bytes `effective-delta-v1\0`. Hash the
|
|
357
|
+
exact NUL-delimited byte stream from Git
|
|
358
|
+
`--raw -z --no-renames --no-abbrev` output, which includes both base and final
|
|
359
|
+
modes and full object IDs for blobs, symlinks, deletions, and gitlinks. Run with
|
|
360
|
+
`LC_ALL=C` from the unique merge base to the compared HEAD. Git's raw `-z`
|
|
361
|
+
format owns path framing and byte ordering; do not parse and reserialize it,
|
|
362
|
+
abbreviate object IDs, enable rename detection, or hash human patch output.
|
|
363
|
+
|
|
364
|
+
Exclude only the exact `$PROJECT_PATH/state.md` checkpoint carrier to avoid a
|
|
365
|
+
self-referential digest. Use Git's literal exclusion pathspec, not a glob.
|
|
366
|
+
Validate that file independently as the structured transition above. Every
|
|
367
|
+
other path remains fingerprinted. Set `freshness_head` to `reviewed_head` and
|
|
368
|
+
`freshness_fingerprint` to `implementation_fingerprint` when the generation
|
|
369
|
+
starts. These rolling fields preserve the accepted tree outcome after later
|
|
370
|
+
authorized closeout transitions without changing the immutable reviewed basis.
|
|
371
|
+
|
|
346
372
|
An in-flight `pending` or `blocked` generation reuses its persisted resolved
|
|
347
373
|
configuration and never re-resolves it. Recompute the fingerprint from those
|
|
348
374
|
persisted inputs before resume. If the persisted resolved configuration does
|
|
@@ -476,19 +502,43 @@ disposition.
|
|
|
476
502
|
policy, or persistence boundary.
|
|
477
503
|
- A fresh `allowed` result resumes after the gate without executing the gate or
|
|
478
504
|
receive a second time. Reuse requires a valid disposition, complete
|
|
479
|
-
configured-gate provenance when configured, an unchanged
|
|
480
|
-
fingerprint,
|
|
505
|
+
configured-gate provenance when configured, an unchanged immutable
|
|
506
|
+
implementation fingerprint, a valid rolling freshness checkpoint, and any
|
|
507
|
+
eligible receive marked complete.
|
|
481
508
|
- Closeout-only descendants include configured gate artifacts and receipts,
|
|
482
509
|
project tracking, `project-log.md` appends, summary/documentation/PR sequence
|
|
483
510
|
outputs, final HiLL bookkeeping, and completion bookkeeping. Classify
|
|
484
511
|
gate-owned `oat project log append` mutations introduced with PR #156 as
|
|
485
|
-
closeout-only
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
512
|
+
closeout-only. A path category alone is insufficient: the corresponding
|
|
513
|
+
persisted gate or sequence transition must own that descendant boundary;
|
|
514
|
+
unknown or mixed work is substantive.
|
|
515
|
+
- For a qualified `sha256:effective-delta-v1:<digest>` value, require the
|
|
516
|
+
persisted `implementation_base_ref`, `freshness_head`, one current merge base,
|
|
517
|
+
and 64-character lowercase hexadecimal implementation and freshness digests.
|
|
518
|
+
Missing or malformed inputs fail closed. Walk descendants after
|
|
519
|
+
`freshness_head` in commit order. Ignore a checkpoint-persistence commit only
|
|
520
|
+
after verifying its diff changes the exact state carrier and nothing else.
|
|
521
|
+
After a corroborated closeout-only transition, hash the complete current
|
|
522
|
+
effective delta and persist the rolling freshness checkpoint. Record the
|
|
523
|
+
transition's last non-checkpoint commit as `freshness_head`; the following
|
|
524
|
+
state-only persistence commit is the verified carrier exception above. For a
|
|
525
|
+
merge, rebase, or base-update boundary, recompute the complete effective delta
|
|
526
|
+
against the current merge base. A merge, rebase, or base update is not
|
|
527
|
+
substantive by itself. When it matches the rolling fingerprint, preserve the
|
|
528
|
+
allowed generation and persist an advanced rolling checkpoint without
|
|
529
|
+
rerunning gate or receive. A mismatch, unknown commit, or mixed
|
|
530
|
+
closeout/substantive boundary marks the generation `stale`.
|
|
531
|
+
Conflict resolution or branch-owned implementation, test, skill, template, or
|
|
532
|
+
workflow changes that alter the effective delta are substantive.
|
|
533
|
+
- Legacy unqualified `sha256:<digest>` values keep the descendant-path policy
|
|
534
|
+
and are never reinterpreted or migrated in place. Determine freshness from
|
|
535
|
+
every path changed after `reviewed_head`, and require each descendant commit
|
|
536
|
+
to contain only recognized closeout work. An unknown changed path fails closed
|
|
537
|
+
as substantive implementation change. Implementation, test, skill, template,
|
|
538
|
+
or workflow configuration changes make the prior result `stale`.
|
|
539
|
+
- Every stale transition preserves prior provenance for audit, requires a
|
|
540
|
+
current final lifecycle review for the changed basis, and starts a new
|
|
541
|
+
generation using the qualified fingerprint format.
|
|
492
542
|
|
|
493
543
|
Before approval-aware sequencing, final HiLL approval, implementation
|
|
494
544
|
completion, or success output, run the configured gate:
|
|
@@ -683,6 +733,14 @@ A pre-approval failure leaves `approval: pending`; a post-approval failure
|
|
|
683
733
|
retains `approval: approved`. Fail fast with the boundary, failed step, and
|
|
684
734
|
exact resume command: `oat-project-implement`.
|
|
685
735
|
|
|
736
|
+
For qualified gate state, treat each committed sequence step as a corroborated
|
|
737
|
+
closeout boundary. Recompute the complete effective delta, record that step
|
|
738
|
+
commit as `freshness_head`, and persist `freshness_fingerprint` in a separate
|
|
739
|
+
state-only checkpoint commit before dispatching the next step. Apply the same
|
|
740
|
+
checkpoint protocol to gate bookkeeping, final HiLL bookkeeping, and completion
|
|
741
|
+
bookkeeping. A mixed commit, missing child transition, or non-state path in the
|
|
742
|
+
checkpoint-persistence commit fails closed as stale.
|
|
743
|
+
|
|
686
744
|
1. Dispatch incomplete `pre_approval` steps in stored order.
|
|
687
745
|
2. When they succeed and a final checkpoint exists, commit `status:
|
|
688
746
|
awaiting_approval` with `approval: pending` before asking for final HiLL
|
|
@@ -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` |
|