@open-agent-toolkit/cli 0.2.13 → 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.
Files changed (38) hide show
  1. package/assets/agents/oat-phase-implementer.md +5 -2
  2. package/assets/agents/oat-reviewer.md +2 -2
  3. package/assets/docs/cli-utilities/tool-packs.md +25 -7
  4. package/assets/docs/contributing/skills.md +17 -10
  5. package/assets/docs/reference/cli-reference.md +1 -1
  6. package/assets/docs/workflows/projects/orchestration-model.md +14 -7
  7. package/assets/docs/workflows/projects/programmatic-execution.md +1 -1
  8. package/assets/docs/workflows/projects/reviews.md +18 -11
  9. package/assets/docs/workflows/skills/index.md +2 -0
  10. package/assets/docs/workflows/skills/repo-improve.md +13 -1
  11. package/assets/public-package-versions.json +4 -4
  12. package/assets/skills/oat-cursor-cloud-projects/SKILL.md +12 -5
  13. package/assets/skills/oat-dispatch-subagents/SKILL.md +81 -24
  14. package/assets/skills/oat-dispatch-subagents/references/provider-claude.md +10 -7
  15. package/assets/skills/oat-dispatch-subagents/references/provider-codex.md +18 -13
  16. package/assets/skills/oat-dispatch-subagents/references/provider-cursor.md +30 -23
  17. package/assets/skills/oat-dispatch-subagents/references/record-schema.md +86 -2
  18. package/assets/skills/oat-project-autonomous/references/gate-inventory.md +2 -2
  19. package/assets/skills/oat-project-dispatch-subagents/SKILL.md +8 -3
  20. package/assets/skills/oat-project-document/references/docs/autonomy-contract.md +2 -2
  21. package/assets/skills/oat-project-implement/SKILL.md +9 -5
  22. package/assets/skills/oat-project-implement/references/docs/autonomy-contract.md +2 -2
  23. package/assets/skills/oat-project-plan-writing/SKILL.md +9 -5
  24. package/assets/skills/oat-project-pr-final/references/docs/autonomy-contract.md +2 -2
  25. package/assets/skills/oat-project-quick-start/references/docs/autonomy-contract.md +2 -2
  26. package/assets/skills/oat-repo-improve/SKILL.md +9 -2
  27. package/assets/skills/subagent-orchestration/SKILL.md +109 -0
  28. package/assets/skills/subagent-orchestration/references/evidence-and-refresh.md +103 -0
  29. package/assets/skills/subagent-orchestration/references/model-selection-principles.md +105 -0
  30. package/assets/skills/subagent-orchestration/references/provider-claude.md +81 -0
  31. package/assets/skills/subagent-orchestration/references/provider-codex.md +63 -0
  32. package/assets/skills/subagent-orchestration/references/provider-cursor.md +78 -0
  33. package/dist/commands/init/tools/shared/skill-manifest.d.ts +1 -1
  34. package/dist/commands/init/tools/shared/skill-manifest.d.ts.map +1 -1
  35. package/dist/commands/init/tools/shared/skill-manifest.js +1 -0
  36. package/dist/commands/init/tools/utility/index.d.ts.map +1 -1
  37. package/dist/commands/init/tools/utility/index.js +16 -2
  38. package/package.json +2 -2
@@ -1,8 +1,10 @@
1
- # Cursor Subagent Dispatch
1
+ # Cursor Dispatch Mechanics
2
2
 
3
- Load this reference only when the active provider is Cursor. Cursor IDE and
4
- Cursor CLI are separate harness contexts. Treat every observed catalog as a
5
- volatile snapshot, never a durable inventory.
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; they override the dated
21
- model-family examples in this provider reference. Intersect that guidance with
22
- the exact model choices advertised by the dispatcher, the supplied policy and
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, and runtime
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, this provider reference, the supplied
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 bounded
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 when:
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 prove an
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 native catalog, nearby
142
- native candidates as possible ladder additions, selected route, and the exact
143
- observation boundary. Do not remove CLI-capable candidates solely because the
144
- native surface cannot pin them, and do not write observed catalogs into durable
145
- configuration without explicit user choice.
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. Mixed classes require separate records and
175
- waves.
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` | `ca11e28923eb -> NG`; `be0a84c48fc0 -> NG` |
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.2
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. Follow its provider-reference loading rule and
33
- request/record contract. Do not copy provider mechanics into this adapter.
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` | `ca11e28923eb -> NG`; `be0a84c48fc0 -> NG` |
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.7
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
- After resolving `ACTIVE_PROVIDER`, read exactly one active-provider reference
34
- from `.agents/skills/oat-dispatch-subagents/references/`
35
- (`provider-cursor.md`, `provider-codex.md`, or `provider-claude.md`). Do not
36
- merge provider mechanics.
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` | `ca11e28923eb -> NG`; `be0a84c48fc0 -> NG` |
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.16
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
- After resolving the review provider, read exactly one active-provider
37
- reference from `.agents/skills/oat-dispatch-subagents/references/`
38
- (`provider-cursor.md`, `provider-codex.md`, or `provider-claude.md`). Do not
39
- merge provider mechanics.
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` | `ca11e28923eb -> NG`; `be0a84c48fc0 -> NG` |
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` |