@open-agent-toolkit/cli 0.2.28 → 0.2.30

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 (44) hide show
  1. package/assets/bundle-metadata.json +4 -0
  2. package/assets/docs/cli-utilities/configuration.md +11 -1
  3. package/assets/docs/workflows/projects/artifacts.md +5 -0
  4. package/assets/docs/workflows/projects/autonomy.md +25 -0
  5. package/assets/docs/workflows/projects/index.md +1 -0
  6. package/assets/docs/workflows/projects/lifecycle.md +23 -0
  7. package/assets/docs/workflows/projects/retro.md +261 -0
  8. package/assets/docs/workflows/skills/index.md +6 -0
  9. package/assets/public-package-versions.json +4 -4
  10. package/assets/skills/oat-project-autonomous/SKILL.md +17 -1
  11. package/assets/skills/oat-project-autonomous/references/gate-inventory.md +41 -41
  12. package/assets/skills/oat-project-complete/SKILL.md +42 -6
  13. package/assets/skills/oat-project-document/references/docs/autonomy-contract.md +41 -41
  14. package/assets/skills/oat-project-implement/SKILL.md +1 -1
  15. package/assets/skills/oat-project-implement/references/completion-and-closeout.md +20 -6
  16. package/assets/skills/oat-project-implement/references/docs/autonomy-contract.md +41 -41
  17. package/assets/skills/oat-project-import-plan/SKILL.md +7 -3
  18. package/assets/skills/oat-project-plan/SKILL.md +6 -3
  19. package/assets/skills/oat-project-plan-writing/SKILL.md +32 -5
  20. package/assets/skills/oat-project-pr-final/references/docs/autonomy-contract.md +41 -41
  21. package/assets/skills/oat-project-quick-start/SKILL.md +7 -3
  22. package/assets/skills/oat-project-quick-start/references/docs/autonomy-contract.md +41 -41
  23. package/assets/skills/oat-project-retro/SKILL.md +310 -0
  24. package/assets/skills/oat-project-retro/references/apply-procedure.md +212 -0
  25. package/assets/skills/oat-project-retro/references/evidence-and-lanes.md +91 -0
  26. package/assets/skills/oat-project-retro/references/retro-quality-bar.md +100 -0
  27. package/assets/skills/oat-project-retro-file/SKILL.md +387 -0
  28. package/assets/templates/project-retro.md +236 -0
  29. package/dist/commands/config/index.d.ts.map +1 -1
  30. package/dist/commands/config/index.js +81 -0
  31. package/dist/commands/init/tools/shared/skill-manifest.d.ts +2 -2
  32. package/dist/commands/init/tools/shared/skill-manifest.d.ts.map +1 -1
  33. package/dist/commands/init/tools/shared/skill-manifest.js +3 -0
  34. package/dist/config/oat-config.d.ts +12 -1
  35. package/dist/config/oat-config.d.ts.map +1 -1
  36. package/dist/config/oat-config.js +38 -2
  37. package/dist/config/resolve.d.ts.map +1 -1
  38. package/dist/config/resolve.js +8 -0
  39. package/dist/fs/assets.d.ts +1 -0
  40. package/dist/fs/assets.d.ts.map +1 -1
  41. package/dist/fs/assets.js +36 -1
  42. package/dist/release/public-package-contract.d.ts.map +1 -1
  43. package/dist/release/public-package-contract.js +1 -0
  44. package/package.json +2 -2
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: oat-project-import-plan
3
- version: 1.4.8
3
+ version: 1.4.9
4
4
  description: Use when you have an external markdown plan to execute with OAT. Preserves the source plan and normalizes it into canonical plan.md format.
5
5
  argument-hint: '<path-to-plan.md> [--provider codex|cursor|claude] [--project <name>]'
6
6
  oat_gateable: true
@@ -257,8 +257,12 @@ oat config adopt dispatch-matrix --user
257
257
 
258
258
  Adoption preserves explicit cells. Re-run the resolver and completeness check.
259
259
  An incomplete or missing ladder after adoption blocks readiness; do not
260
- overwrite explicit cells or infer provider defaults. Non-interactive import
261
- also blocks on a missing or incomplete ladder.
260
+ overwrite explicit cells or infer provider defaults. Ordinary non-interactive
261
+ import blocks on a missing or incomplete ladder. When `OAT_AUTONOMOUS=1`,
262
+ follow the shared contract's deterministic user-first existing-scope
263
+ resolution, run exactly one adoption against the selected config scope, and
264
+ block only if no authorized compatible scope exists or the post-adoption ladder
265
+ remains incomplete.
262
266
 
263
267
  The selected scope owns only reusable ladders. A project-specific active policy
264
268
  or ceiling must not be written to user `~/.oat/config.json`. Resolve or ask
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: oat-project-plan
3
- version: 1.4.3
3
+ version: 1.4.4
4
4
  description: Use when design.md is complete and executable implementation tasks are needed. Breaks design into bite-sized TDD tasks in canonical plan.md format.
5
5
  oat_gateable: true
6
6
  disable-model-invocation: true
@@ -371,8 +371,11 @@ oat config adopt dispatch-matrix --user
371
371
  Adoption fills missing cells but preserves explicit values. Re-run the resolver
372
372
  and the completeness check. An incomplete or missing ladder after adoption
373
373
  blocks readiness; do not overwrite explicit cells, infer a fallback, or mark
374
- the plan ready. Non-interactive setup also blocks on a missing or incomplete
375
- ladder.
374
+ the plan ready. Ordinary non-interactive setup blocks on a missing or
375
+ incomplete ladder. When `OAT_AUTONOMOUS=1`, follow the shared contract's
376
+ deterministic user-first existing-scope resolution, run exactly one adoption
377
+ against the selected config scope, and block only if no authorized compatible
378
+ scope exists or the post-adoption ladder remains incomplete.
376
379
 
377
380
  The owning scope stores only the reusable ladders. A project-specific active
378
381
  policy or ceiling must not be written to user `~/.oat/config.json`.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: oat-project-plan-writing
3
- version: 1.2.17
3
+ version: 1.2.18
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
@@ -102,7 +102,8 @@ asking to write anything:
102
102
  | Claude | haiku, sonnet | sonnet | opus | fable |
103
103
  | Cursor (opaque) | `gpt-5.6-luna-low`, `gpt-5.6-luna-medium`, `gpt-5.6-luna-high` | `gpt-5.6-luna-xhigh`, `gpt-5.6-terra-low`, `gpt-5.6-terra-medium`, `gpt-5.6-terra-high`, `gpt-5.6-terra-xhigh` | `gpt-5.6-sol-low`, `gpt-5.6-sol-medium`, `gpt-5.6-sol-high` | `gpt-5.6-sol-xhigh`, `gpt-5.6-sol-max` |
104
104
 
105
- Ask the user to select the owning scope explicitly before any adoption write:
105
+ In an interactive run, ask the user to select the owning scope explicitly
106
+ before any adoption write:
106
107
 
107
108
  1. **Shared repository** - team-owned `.oat/config.json`; run
108
109
  `oat config adopt dispatch-matrix --shared`.
@@ -118,13 +119,39 @@ project's named ceiling is a separate project-state constraint. A
118
119
  project-specific active policy or ceiling must not be written to user
119
120
  `~/.oat/config.json`.
120
121
 
122
+ In an autonomous run (`OAT_AUTONOMOUS=1`), resolve ownership without prompting:
123
+
124
+ 1. Check config-file existence in this fixed order: user config
125
+ `~/.oat/config.json`, repo-local config `.oat/config.local.json`, then shared
126
+ config `.oat/config.json`. Consider shared only when repository-policy
127
+ authority already permits that write. Do not ask which scope to use and do
128
+ not reorder candidates from effective value or matrix-cell provenance.
129
+ 2. Before selecting a scope, inspect only the raw dispatch-ceiling shapes in
130
+ that scope and higher-precedence scopes. The scope is adoption-compatible
131
+ only when the recommendation can fill the preflight's missing provider/tier
132
+ cells without preserving a provider-level scalar in the selected scope or
133
+ being shadowed by one at higher precedence. A lower-precedence scalar is not
134
+ an obstacle when the selected scope writes the provider matrix above it.
135
+ 3. Select the first existing adoption-compatible authorized scope. If none
136
+ exists, name
137
+ the conflicting scalar paths and report the repository-policy boundary
138
+ before any write.
139
+ 4. Run exactly one matching adoption command, record the file-existence and
140
+ compatibility evidence plus the selected scope, then re-run the reviewer
141
+ preflight resolver.
142
+
143
+ This ownership lookup may inspect file existence and raw config only for the
144
+ scalar compatibility check above. It must not hand-merge config values or
145
+ replace the effective resolver boundary. Existing explicit matrix cells remain
146
+ preserved by adoption; their provenance does not choose the persistence scope.
147
+ In ordinary non-interactive mode without `OAT_AUTONOMOUS=1`, an incomplete
148
+ ladder or missing effective cells block readiness rather than choosing a scope.
149
+
121
150
  Adoption preserves explicit cells. After adoption, re-run the reviewer
122
151
  preflight resolver and re-check `ladderCompleteness.complete` and
123
152
  `ladderCompleteness.missingCells`. If preserved legacy or partial cells still
124
153
  leave effective cells incomplete or missing, identify those cells and block;
125
- do not overwrite, infer, or mark the plan implementation-ready. In
126
- non-interactive mode, incomplete or missing effective cells block readiness
127
- without choosing an ownership scope.
154
+ do not overwrite, infer, or mark the plan implementation-ready.
128
155
 
129
156
  ### Reviewer Ceiling Contract
130
157