@open-agent-toolkit/cli 0.2.12 → 0.2.14
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-phase-implementer.md +5 -2
- package/assets/agents/oat-reviewer.md +2 -2
- package/assets/docs/cli-utilities/tool-packs.md +25 -7
- package/assets/docs/contributing/code.md +13 -0
- package/assets/docs/contributing/skills.md +17 -10
- package/assets/docs/reference/cli-reference.md +1 -1
- package/assets/docs/workflows/projects/orchestration-model.md +14 -7
- package/assets/docs/workflows/projects/programmatic-execution.md +1 -1
- package/assets/docs/workflows/projects/reviews.md +18 -11
- package/assets/docs/workflows/skills/index.md +2 -0
- package/assets/docs/workflows/skills/repo-improve.md +13 -1
- package/assets/public-package-versions.json +4 -4
- package/assets/skills/oat-cursor-cloud-projects/SKILL.md +12 -5
- package/assets/skills/oat-dispatch-subagents/SKILL.md +81 -24
- package/assets/skills/oat-dispatch-subagents/references/provider-claude.md +10 -7
- package/assets/skills/oat-dispatch-subagents/references/provider-codex.md +18 -13
- package/assets/skills/oat-dispatch-subagents/references/provider-cursor.md +30 -23
- package/assets/skills/oat-dispatch-subagents/references/record-schema.md +86 -2
- package/assets/skills/oat-project-autonomous/references/gate-inventory.md +2 -2
- package/assets/skills/oat-project-dispatch-subagents/SKILL.md +8 -3
- package/assets/skills/oat-project-document/references/docs/autonomy-contract.md +2 -2
- package/assets/skills/oat-project-implement/SKILL.md +9 -5
- package/assets/skills/oat-project-implement/references/docs/autonomy-contract.md +2 -2
- package/assets/skills/oat-project-plan-writing/SKILL.md +9 -5
- package/assets/skills/oat-project-pr-final/references/docs/autonomy-contract.md +2 -2
- package/assets/skills/oat-project-quick-start/references/docs/autonomy-contract.md +2 -2
- package/assets/skills/oat-repo-improve/SKILL.md +9 -2
- package/assets/skills/subagent-orchestration/SKILL.md +109 -0
- package/assets/skills/subagent-orchestration/references/evidence-and-refresh.md +103 -0
- package/assets/skills/subagent-orchestration/references/model-selection-principles.md +105 -0
- package/assets/skills/subagent-orchestration/references/provider-claude.md +81 -0
- package/assets/skills/subagent-orchestration/references/provider-codex.md +63 -0
- package/assets/skills/subagent-orchestration/references/provider-cursor.md +78 -0
- package/dist/__tests__/skills/split-flow-fixtures.d.ts +2 -2
- package/dist/__tests__/skills/split-flow-fixtures.d.ts.map +1 -1
- package/dist/commands/backlog/archive.d.ts.map +1 -1
- package/dist/commands/backlog/shared/item-status.d.ts +1 -1
- package/dist/commands/backlog/shared/item-status.d.ts.map +1 -1
- package/dist/commands/init/tools/shared/skill-manifest.d.ts +14 -14
- package/dist/commands/init/tools/shared/skill-manifest.d.ts.map +1 -1
- package/dist/commands/init/tools/shared/skill-manifest.js +1 -0
- package/dist/commands/init/tools/utility/index.d.ts.map +1 -1
- package/dist/commands/init/tools/utility/index.js +16 -2
- package/dist/commands/instructions/instructions.types.d.ts +1 -1
- package/dist/commands/instructions/instructions.types.d.ts.map +1 -1
- package/dist/commands/pjm/init.d.ts +1 -1
- package/dist/commands/project/log/grammar.d.ts +2 -2
- package/dist/commands/project/log/grammar.d.ts.map +1 -1
- package/dist/commands/shared/frontmatter.d.ts +3 -3
- package/dist/commands/shared/frontmatter.d.ts.map +1 -1
- package/dist/config/dispatch-ceiling-preset.d.ts +14 -14
- package/dist/config/dispatch-ceiling-preset.d.ts.map +1 -1
- package/dist/config/sync-config.d.ts +8 -8
- package/dist/engine/engine.types.d.ts +1 -1
- package/dist/engine/engine.types.d.ts.map +1 -1
- package/dist/errors/cli-error.d.ts.map +1 -1
- package/dist/manifest/manifest.types.d.ts +50 -50
- package/dist/projects/split/resume.d.ts.map +1 -1
- package/dist/projects/split/seed-children.d.ts +1 -1
- package/dist/projects/split/seed-children.d.ts.map +1 -1
- package/dist/providers/codex/codec/catalog.d.ts +1 -1
- package/dist/providers/codex/codec/catalog.d.ts.map +1 -1
- package/dist/providers/cursor/codec/catalog.d.ts +1 -1
- package/dist/providers/cursor/codec/catalog.d.ts.map +1 -1
- package/dist/review-remote/reviewer-dispatch.d.ts +2 -2
- package/dist/review-remote/reviewer-dispatch.d.ts.map +1 -1
- package/dist/rules/canonical/types.d.ts +1 -1
- package/dist/rules/canonical/types.d.ts.map +1 -1
- package/dist/shared/types.d.ts +1 -1
- package/dist/shared/types.d.ts.map +1 -1
- package/package.json +8 -7
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
# Cursor
|
|
1
|
+
# Cursor Dispatch Mechanics
|
|
2
2
|
|
|
3
|
-
Load this reference only when the active provider is Cursor. Cursor IDE
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
Load this reference only when the active provider is Cursor. Cursor IDE, CLI,
|
|
4
|
+
and SDK are related but distinct dispatch contexts. Model-selection policy for
|
|
5
|
+
this provider lives in `subagent-orchestration/references/provider-cursor.md`;
|
|
6
|
+
read it first. Treat every observed catalog as a volatile snapshot, never a
|
|
7
|
+
durable inventory.
|
|
6
8
|
|
|
7
9
|
## Control Surfaces
|
|
8
10
|
|
|
@@ -10,17 +12,21 @@ volatile snapshot, never a durable inventory.
|
|
|
10
12
|
| ---------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- |
|
|
11
13
|
| Native Task/Subagent schema | Agent types available for that dispatcher invocation | CLI account eligibility or another dispatcher's native catalog |
|
|
12
14
|
| `cursor-agent --list-models` | Opaque flat model IDs accepted by the account CLI and resolver | Native Task eligibility or definition-pin acceptance |
|
|
15
|
+
| Cursor SDK catalog/schema | Models accepted by that SDK context | IDE or nested-native eligibility |
|
|
13
16
|
| Cursor UI role configuration | User-selected defaults and role settings | Live root or nested schema without a new observation |
|
|
14
17
|
|
|
15
18
|
Root and nested catalogs are independent, volatile observations. Equality in
|
|
16
19
|
one run does not establish equality in another run or nesting boundary.
|
|
17
20
|
|
|
21
|
+
Record the model selector and the service tier separately even when Cursor
|
|
22
|
+
encodes both in one opaque alias.
|
|
23
|
+
|
|
18
24
|
## Task-Class Resolution
|
|
19
25
|
|
|
20
|
-
Apply active user and repository instructions first
|
|
21
|
-
|
|
22
|
-
the exact model choices advertised by the dispatcher, the supplied policy
|
|
23
|
-
ceiling, and the requested class floor:
|
|
26
|
+
Apply active user and repository instructions first, then the dated class
|
|
27
|
+
guidance from the active provider selection reference. Intersect that guidance
|
|
28
|
+
with the exact model choices advertised by the dispatcher, the supplied policy
|
|
29
|
+
and ceiling, and the requested class floor:
|
|
24
30
|
|
|
25
31
|
- `mechanical-recon`: the fastest economical class suitable for deterministic
|
|
26
32
|
inventories, parity, and command execution;
|
|
@@ -55,8 +61,8 @@ reconstruct either model string.
|
|
|
55
61
|
fallback or replacement.
|
|
56
62
|
6. Treat an omitted variant as deliberate parent inheritance only when the
|
|
57
63
|
resolver selected no managed target.
|
|
58
|
-
7. Record selected variant, mapped target, acceptance, outcome,
|
|
59
|
-
identity separately.
|
|
64
|
+
7. Record selected variant, mapped target, service tier, acceptance, outcome,
|
|
65
|
+
runtime identity, and guidance version separately.
|
|
60
66
|
|
|
61
67
|
## Reviewer-Local Nested Selection
|
|
62
68
|
|
|
@@ -68,7 +74,7 @@ exists.
|
|
|
68
74
|
|
|
69
75
|
1. Read the model choices advertised by the nested Task/Subagent dispatcher.
|
|
70
76
|
2. Intersect those advertised model choices with active user and repository
|
|
71
|
-
model-class instructions,
|
|
77
|
+
model-class instructions, the selection reference, the supplied
|
|
72
78
|
policy/ceiling, and the requested `model_class_floor`.
|
|
73
79
|
3. Use the native `generalPurpose` agent type and pass the exact model choice
|
|
74
80
|
advertised by the current nested dispatcher byte-for-byte.
|
|
@@ -83,8 +89,8 @@ model pins, or reconstruct a lifecycle variant. If no exact nested selector
|
|
|
83
89
|
satisfies the floor, record `floor_satisfaction: unsatisfied` and return the
|
|
84
90
|
lane for caller-inline coverage without launching a weaker worker.
|
|
85
91
|
|
|
86
|
-
Do not infer Cursor IDE behavior from a headless CLI surface. Keep
|
|
87
|
-
mechanical recon on economical explicit targets. Stronger lanes use a
|
|
92
|
+
Do not infer Cursor IDE behavior from a headless CLI or SDK surface. Keep
|
|
93
|
+
bounded mechanical recon on economical explicit targets. Stronger lanes use a
|
|
88
94
|
floor-satisfying target when advertised or stay with the primary reviewer.
|
|
89
95
|
|
|
90
96
|
## Dispatch Mode and Liveness
|
|
@@ -108,14 +114,15 @@ liveness, stat that specific file's mtime and size rather than inferring from a
|
|
|
108
114
|
directory. Metadata change is observable activity evidence, not a health
|
|
109
115
|
verdict.
|
|
110
116
|
|
|
111
|
-
## Pre-Start CLI Routes
|
|
117
|
+
## Pre-Start CLI or SDK Routes
|
|
112
118
|
|
|
113
119
|
Any native mismatch is recorded before launch with the route, reason, and
|
|
114
120
|
candidate set.
|
|
115
121
|
|
|
116
122
|
When exact outer lifecycle role selection rejects the resolver-selected
|
|
117
123
|
variant before launch, or a generic caller's current native intersection is
|
|
118
|
-
unsatisfactory, a caller may use a deliberate pre-start CLI route only
|
|
124
|
+
unsatisfactory, a caller may use a deliberate pre-start CLI or SDK route only
|
|
125
|
+
when:
|
|
119
126
|
|
|
120
127
|
- the caller's fallback policy allows it;
|
|
121
128
|
- the exact CLI selector exists in the account catalog;
|
|
@@ -123,7 +130,7 @@ unsatisfactory, a caller may use a deliberate pre-start CLI route only when:
|
|
|
123
130
|
candidates are recorded before launch;
|
|
124
131
|
- the prompt is self-contained and authority-bounded.
|
|
125
132
|
|
|
126
|
-
Verify current CLI help before use. A typical shape is:
|
|
133
|
+
Verify current CLI or SDK help/schema before use. A typical CLI shape is:
|
|
127
134
|
|
|
128
135
|
```sh
|
|
129
136
|
cursor-agent \
|
|
@@ -133,13 +140,13 @@ cursor-agent \
|
|
|
133
140
|
'<self-contained bounded prompt>'
|
|
134
141
|
```
|
|
135
142
|
|
|
136
|
-
CLI completion proves configured invocation completion. It does not
|
|
137
|
-
inner native selection or runtime model identity.
|
|
143
|
+
CLI or SDK completion proves configured invocation completion. It does not
|
|
144
|
+
prove an inner native selection or runtime model identity.
|
|
138
145
|
|
|
139
146
|
## Catalog-Mismatch Advisory
|
|
140
147
|
|
|
141
|
-
Report configured candidates missing from the current
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
148
|
+
Report configured candidates missing from the current catalog, nearby native
|
|
149
|
+
candidates, the selected route, and the exact observation boundary. Do not
|
|
150
|
+
remove CLI- or SDK-capable candidates solely because another native surface
|
|
151
|
+
cannot pin them. Do not persist an observed catalog without explicit user
|
|
152
|
+
choice.
|
|
@@ -19,6 +19,8 @@ provider: codex
|
|
|
19
19
|
dispatch_context: root-native
|
|
20
20
|
dispatch_policy: economy
|
|
21
21
|
dispatch_ceiling: high
|
|
22
|
+
service_tier: standard
|
|
23
|
+
reasoning_mode: null
|
|
22
24
|
authority: read-only
|
|
23
25
|
expected_output: structured-findings
|
|
24
26
|
verification_evidence: file-line-references
|
|
@@ -34,6 +36,14 @@ escalate_when:
|
|
|
34
36
|
- security impact is consequential
|
|
35
37
|
```
|
|
36
38
|
|
|
39
|
+
`reasoning_mode` and `service_tier` are normalized caller-intent fields. During
|
|
40
|
+
selection, map `reasoning_mode` to the resolved
|
|
41
|
+
`reasoning_mode_selector` record field and `service_tier` to the resolved
|
|
42
|
+
`service_tier_selector` record field. The selector fields are launch evidence,
|
|
43
|
+
not blind copies of request values: they must contain the exact
|
|
44
|
+
provider-native controls actually selected, or `null` when no independent
|
|
45
|
+
control was selected or exposed.
|
|
46
|
+
|
|
37
47
|
`dispatch_policy` and `dispatch_ceiling` are optional resolved inputs. The
|
|
38
48
|
general engine does not resolve their source.
|
|
39
49
|
|
|
@@ -59,6 +69,47 @@ retain the original role-based selection and fallback behavior. The legacy
|
|
|
59
69
|
`explicit-downgrade` example above is valid only for an unconstrained request
|
|
60
70
|
without task-class metadata or a declared class floor.
|
|
61
71
|
|
|
72
|
+
## Legacy Record
|
|
73
|
+
|
|
74
|
+
This baseline Record remains valid without optional model-guidance evidence:
|
|
75
|
+
|
|
76
|
+
```yaml
|
|
77
|
+
request_id: dispatch-legacy-id
|
|
78
|
+
caller: oat-repo-improve
|
|
79
|
+
scope: repo:packages/cli
|
|
80
|
+
objective: Audit CLI correctness hotspots
|
|
81
|
+
action: analysis
|
|
82
|
+
role_name: repo-audit-scout
|
|
83
|
+
role_class: recon
|
|
84
|
+
provider: codex
|
|
85
|
+
dispatch_context: root-native
|
|
86
|
+
dispatch_policy: economy
|
|
87
|
+
dispatch_ceiling: high
|
|
88
|
+
catalog_snapshot:
|
|
89
|
+
id: root-native-legacy-1
|
|
90
|
+
source: tool-schema
|
|
91
|
+
observed_at: 2026-07-12T00:00:00Z
|
|
92
|
+
authority: read-only
|
|
93
|
+
role_selector: oat-recon-worker
|
|
94
|
+
model_selector: opaque-provider-selector
|
|
95
|
+
model_selector_granularity: opaque
|
|
96
|
+
effort_selector: economical
|
|
97
|
+
selection_source: native-default
|
|
98
|
+
candidates_considered:
|
|
99
|
+
- opaque-provider-selector
|
|
100
|
+
selection_reason: native-catalog
|
|
101
|
+
selected_route: native
|
|
102
|
+
deadline_seconds: 300
|
|
103
|
+
retry_limit: 1
|
|
104
|
+
payload: {}
|
|
105
|
+
launch_status: accepted
|
|
106
|
+
child_outcome: completed
|
|
107
|
+
configured_invocation_evidence: []
|
|
108
|
+
runtime_confirmation: not-reported
|
|
109
|
+
diagnostics: []
|
|
110
|
+
continuation_events: []
|
|
111
|
+
```
|
|
112
|
+
|
|
62
113
|
## Record
|
|
63
114
|
|
|
64
115
|
```yaml
|
|
@@ -82,6 +133,12 @@ role_selector: oat-recon-worker
|
|
|
82
133
|
model_selector: opaque-provider-selector
|
|
83
134
|
model_selector_granularity: opaque
|
|
84
135
|
effort_selector: economical
|
|
136
|
+
reasoning_mode_selector: null
|
|
137
|
+
service_tier_selector: standard
|
|
138
|
+
guidance_reference: subagent-orchestration/references/provider-codex.md
|
|
139
|
+
guidance_version: 2026-07-21
|
|
140
|
+
guidance_verified_at: 2026-07-21
|
|
141
|
+
guidance_status: fresh
|
|
85
142
|
selection_source: native-default
|
|
86
143
|
candidates_considered:
|
|
87
144
|
- opaque-provider-selector
|
|
@@ -171,5 +228,32 @@ lanes:
|
|
|
171
228
|
The wave scope is the aggregate boundary. Lane scope may narrow it. Use one
|
|
172
229
|
shared record only when every dispatch axis listed in the main skill,
|
|
173
230
|
`task_class`, and `model_class_floor` are identical. Lane entries do not
|
|
174
|
-
redefine the shared class fields.
|
|
175
|
-
|
|
231
|
+
redefine the shared class fields. In particular, `reasoning_mode_selector`,
|
|
232
|
+
`service_tier_selector`, `guidance_reference`, `guidance_version`,
|
|
233
|
+
`guidance_verified_at`, and `guidance_status` must be identically present or
|
|
234
|
+
absent across lanes and, when present, have identical values. Mixed classes or
|
|
235
|
+
different model-guidance controls require separate records and waves.
|
|
236
|
+
|
|
237
|
+
## Optional Model-Guidance Evidence
|
|
238
|
+
|
|
239
|
+
The following fields are optional for legacy callers and required when the
|
|
240
|
+
launch surface exposes the corresponding control or when dated provider
|
|
241
|
+
mapping influenced selection:
|
|
242
|
+
|
|
243
|
+
```yaml
|
|
244
|
+
reasoning_mode_selector: null # e.g. pro, when independent of effort
|
|
245
|
+
service_tier_selector: standard # e.g. standard, fast, priority
|
|
246
|
+
guidance_reference: subagent-orchestration/references/provider-codex.md
|
|
247
|
+
guidance_version: 2026-07-21
|
|
248
|
+
guidance_verified_at: 2026-07-21
|
|
249
|
+
guidance_status: fresh # fresh | review-required | stale
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
Keep `model_selector`, `effort_selector`, `reasoning_mode_selector`, and
|
|
253
|
+
`service_tier_selector` separate even when a provider encodes several axes in
|
|
254
|
+
one opaque alias. Preserve that exact alias in `model_selector` and also record
|
|
255
|
+
the interpreted service tier when known.
|
|
256
|
+
|
|
257
|
+
A service tier never changes `model_class_floor` or `floor_satisfaction`.
|
|
258
|
+
Unknown tier semantics must be recorded as a diagnostic and may block a
|
|
259
|
+
consequential route.
|
|
@@ -255,8 +255,8 @@ remains immutable baseline evidence for the original p01-t01 verification.
|
|
|
255
255
|
| `oat-dispatch-subagents/SKILL.md` | `cb4f86157fd6 -> DISPATCH-01`; `f165b1626192 -> DISPATCH-01`; `7ed5e2b1eb71 -> PDISPATCH-01`; `11c72bcdebad -> DISPATCH-02`; `0834ee701e12 -> DISPATCH-02`; `7fda54e1d519 -> PDISPATCH-01` |
|
|
256
256
|
| `oat-dispatch-subagents/references/provider-claude.md` | `fbe3a21e9533 -> NG` |
|
|
257
257
|
| `oat-dispatch-subagents/references/provider-codex.md` | `95b0f82018c7 -> NG` |
|
|
258
|
-
| `oat-dispatch-subagents/references/provider-cursor.md` | `
|
|
259
|
-
| `oat-dispatch-subagents/references/record-schema.md` | `78f8069274a8 -> NG`
|
|
258
|
+
| `oat-dispatch-subagents/references/provider-cursor.md` | `f781555295a9 -> NG`; `55ccfef14fd6 -> NG` |
|
|
259
|
+
| `oat-dispatch-subagents/references/record-schema.md` | `78f8069274a8 -> NG`; `1c9a84c4d1e0 -> NG` |
|
|
260
260
|
| `oat-project-dispatch-subagents/SKILL.md` | `eca03ad1ca12 -> PDISPATCH-01`; `59fbcdc79cea -> PDISPATCH-01` |
|
|
261
261
|
| `oat-project-plan/SKILL.md` | `f99e44b39932 -> PLAN-12`; `7e6a9854504b -> NG` |
|
|
262
262
|
| `oat-project-implement/references/completion-and-closeout.md` | `6909a5a5a1fa -> IMPLEMENT-19`; `a7c02ef670fd -> IMPLEMENT-19` |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: oat-project-dispatch-subagents
|
|
3
|
-
version: 1.1.
|
|
3
|
+
version: 1.1.3
|
|
4
4
|
description: Use when an OAT project lifecycle skill needs to translate project state, phase or task scope, gates, and write authority into a provider-neutral subagent dispatch.
|
|
5
5
|
disable-model-invocation: true
|
|
6
6
|
user-invocable: false
|
|
@@ -29,8 +29,13 @@ dispatch summary for the caller to incorporate.
|
|
|
29
29
|
## Required Loading
|
|
30
30
|
|
|
31
31
|
Resolve and read `oat-dispatch-subagents` from the active skill catalog before
|
|
32
|
-
every lifecycle dispatch.
|
|
33
|
-
|
|
32
|
+
every lifecycle dispatch. Read the generic principles from
|
|
33
|
+
`subagent-orchestration/references/model-selection-principles.md`, then resolve
|
|
34
|
+
the active provider and read exactly one matching selection reference from
|
|
35
|
+
`subagent-orchestration/references/` plus one matching mechanics reference from
|
|
36
|
+
`oat-dispatch-subagents/references/`. Follow the general engine's
|
|
37
|
+
request/record contract. Do not copy provider guidance or mechanics into this
|
|
38
|
+
adapter.
|
|
34
39
|
|
|
35
40
|
If the engine skill is unavailable, stop before project mutation or child
|
|
36
41
|
launch and tell the user to install the utility pack at the matching scope:
|
|
@@ -255,8 +255,8 @@ remains immutable baseline evidence for the original p01-t01 verification.
|
|
|
255
255
|
| `oat-dispatch-subagents/SKILL.md` | `cb4f86157fd6 -> DISPATCH-01`; `f165b1626192 -> DISPATCH-01`; `7ed5e2b1eb71 -> PDISPATCH-01`; `11c72bcdebad -> DISPATCH-02`; `0834ee701e12 -> DISPATCH-02`; `7fda54e1d519 -> PDISPATCH-01` |
|
|
256
256
|
| `oat-dispatch-subagents/references/provider-claude.md` | `fbe3a21e9533 -> NG` |
|
|
257
257
|
| `oat-dispatch-subagents/references/provider-codex.md` | `95b0f82018c7 -> NG` |
|
|
258
|
-
| `oat-dispatch-subagents/references/provider-cursor.md` | `
|
|
259
|
-
| `oat-dispatch-subagents/references/record-schema.md` | `78f8069274a8 -> NG`
|
|
258
|
+
| `oat-dispatch-subagents/references/provider-cursor.md` | `f781555295a9 -> NG`; `55ccfef14fd6 -> NG` |
|
|
259
|
+
| `oat-dispatch-subagents/references/record-schema.md` | `78f8069274a8 -> NG`; `1c9a84c4d1e0 -> NG` |
|
|
260
260
|
| `oat-project-dispatch-subagents/SKILL.md` | `eca03ad1ca12 -> PDISPATCH-01`; `59fbcdc79cea -> PDISPATCH-01` |
|
|
261
261
|
| `oat-project-plan/SKILL.md` | `f99e44b39932 -> PLAN-12`; `7e6a9854504b -> NG` |
|
|
262
262
|
| `oat-project-implement/references/completion-and-closeout.md` | `6909a5a5a1fa -> IMPLEMENT-19`; `a7c02ef670fd -> IMPLEMENT-19` |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: oat-project-implement
|
|
3
|
-
version: 2.1.
|
|
3
|
+
version: 2.1.8
|
|
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]'
|
|
@@ -30,10 +30,14 @@ lifecycle sequencing, verification, integration, and approval-aware final
|
|
|
30
30
|
closeout.
|
|
31
31
|
Correctness must not require a provider restart or hot reload.
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
Read
|
|
34
|
+
`.agents/skills/subagent-orchestration/references/model-selection-principles.md`.
|
|
35
|
+
After resolving `ACTIVE_PROVIDER`, read exactly one active-provider selection
|
|
36
|
+
reference from `.agents/skills/subagent-orchestration/references/` and the
|
|
37
|
+
matching mechanics reference from
|
|
38
|
+
`.agents/skills/oat-dispatch-subagents/references/` (`provider-cursor.md`,
|
|
39
|
+
`provider-codex.md`, or `provider-claude.md`). Do not merge provider guidance
|
|
40
|
+
or mechanics.
|
|
37
41
|
|
|
38
42
|
## Project Log Append Points
|
|
39
43
|
|
|
@@ -255,8 +255,8 @@ remains immutable baseline evidence for the original p01-t01 verification.
|
|
|
255
255
|
| `oat-dispatch-subagents/SKILL.md` | `cb4f86157fd6 -> DISPATCH-01`; `f165b1626192 -> DISPATCH-01`; `7ed5e2b1eb71 -> PDISPATCH-01`; `11c72bcdebad -> DISPATCH-02`; `0834ee701e12 -> DISPATCH-02`; `7fda54e1d519 -> PDISPATCH-01` |
|
|
256
256
|
| `oat-dispatch-subagents/references/provider-claude.md` | `fbe3a21e9533 -> NG` |
|
|
257
257
|
| `oat-dispatch-subagents/references/provider-codex.md` | `95b0f82018c7 -> NG` |
|
|
258
|
-
| `oat-dispatch-subagents/references/provider-cursor.md` | `
|
|
259
|
-
| `oat-dispatch-subagents/references/record-schema.md` | `78f8069274a8 -> NG`
|
|
258
|
+
| `oat-dispatch-subagents/references/provider-cursor.md` | `f781555295a9 -> NG`; `55ccfef14fd6 -> NG` |
|
|
259
|
+
| `oat-dispatch-subagents/references/record-schema.md` | `78f8069274a8 -> NG`; `1c9a84c4d1e0 -> NG` |
|
|
260
260
|
| `oat-project-dispatch-subagents/SKILL.md` | `eca03ad1ca12 -> PDISPATCH-01`; `59fbcdc79cea -> PDISPATCH-01` |
|
|
261
261
|
| `oat-project-plan/SKILL.md` | `f99e44b39932 -> PLAN-12`; `7e6a9854504b -> NG` |
|
|
262
262
|
| `oat-project-implement/references/completion-and-closeout.md` | `6909a5a5a1fa -> IMPLEMENT-19`; `a7c02ef670fd -> IMPLEMENT-19` |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: oat-project-plan-writing
|
|
3
|
-
version: 1.2.
|
|
3
|
+
version: 1.2.17
|
|
4
4
|
description: Use when authoring or mutating plan.md in any OAT workflow. Defines canonical format invariants — stable task IDs, required sections, review table rules, and resume guardrails.
|
|
5
5
|
disable-model-invocation: true
|
|
6
6
|
user-invocable: false
|
|
@@ -33,10 +33,14 @@ inherits the planning parent by default. The shared contracts own any
|
|
|
33
33
|
catalog-aware exception, launch acceptance boundary, and dispatch record; this
|
|
34
34
|
skill continues to own plan readiness and review disposition.
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
Read
|
|
37
|
+
`.agents/skills/subagent-orchestration/references/model-selection-principles.md`.
|
|
38
|
+
After resolving the review provider, read exactly one active-provider selection
|
|
39
|
+
reference from `.agents/skills/subagent-orchestration/references/` and the
|
|
40
|
+
matching mechanics reference from
|
|
41
|
+
`.agents/skills/oat-dispatch-subagents/references/` (`provider-cursor.md`,
|
|
42
|
+
`provider-codex.md`, or `provider-claude.md`). Do not merge provider guidance
|
|
43
|
+
or mechanics.
|
|
40
44
|
|
|
41
45
|
## Planning-Time Artifact Formatting Contract
|
|
42
46
|
|
|
@@ -255,8 +255,8 @@ remains immutable baseline evidence for the original p01-t01 verification.
|
|
|
255
255
|
| `oat-dispatch-subagents/SKILL.md` | `cb4f86157fd6 -> DISPATCH-01`; `f165b1626192 -> DISPATCH-01`; `7ed5e2b1eb71 -> PDISPATCH-01`; `11c72bcdebad -> DISPATCH-02`; `0834ee701e12 -> DISPATCH-02`; `7fda54e1d519 -> PDISPATCH-01` |
|
|
256
256
|
| `oat-dispatch-subagents/references/provider-claude.md` | `fbe3a21e9533 -> NG` |
|
|
257
257
|
| `oat-dispatch-subagents/references/provider-codex.md` | `95b0f82018c7 -> NG` |
|
|
258
|
-
| `oat-dispatch-subagents/references/provider-cursor.md` | `
|
|
259
|
-
| `oat-dispatch-subagents/references/record-schema.md` | `78f8069274a8 -> NG`
|
|
258
|
+
| `oat-dispatch-subagents/references/provider-cursor.md` | `f781555295a9 -> NG`; `55ccfef14fd6 -> NG` |
|
|
259
|
+
| `oat-dispatch-subagents/references/record-schema.md` | `78f8069274a8 -> NG`; `1c9a84c4d1e0 -> NG` |
|
|
260
260
|
| `oat-project-dispatch-subagents/SKILL.md` | `eca03ad1ca12 -> PDISPATCH-01`; `59fbcdc79cea -> PDISPATCH-01` |
|
|
261
261
|
| `oat-project-plan/SKILL.md` | `f99e44b39932 -> PLAN-12`; `7e6a9854504b -> NG` |
|
|
262
262
|
| `oat-project-implement/references/completion-and-closeout.md` | `6909a5a5a1fa -> IMPLEMENT-19`; `a7c02ef670fd -> IMPLEMENT-19` |
|