@open-agent-toolkit/cli 0.0.53 → 0.0.54

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.
@@ -0,0 +1,112 @@
1
+ # Selective Review Pass
2
+
3
+ This reference defines the prose-driven classification pass used by `oat-project-design` when `DESIGN_MODE == "selective"`. The skill body owns flow; this file owns the heuristic.
4
+
5
+ ## Signal Set
6
+
7
+ Classify each design section as `routine` or `needs-eyes`. Bias is conservative: any one `needs-eyes` signal marks the section `needs-eyes`.
8
+
9
+ Always `needs-eyes`:
10
+
11
+ - `Overview + Architecture`
12
+ - `Security Considerations`
13
+ - `Performance Considerations`
14
+ - `Error Handling`
15
+ - `Migration Plan`
16
+
17
+ Per-section `needs-eyes` signals:
18
+
19
+ - The user flagged concern, uncertainty, or worry about this area during discovery.
20
+ - Discovery Open Questions mention this area.
21
+ - Three or more spec FRs/NFRs directly touch this area.
22
+ - Component boundaries cross modules not already described in `.oat/repo/knowledge/architecture.md`.
23
+ - The section introduces a pattern absent from `.oat/repo/knowledge/conventions.md` and `.oat/repo/knowledge/stack.md`.
24
+ - The section changes public API, CLI, configuration, workflow semantics, defaults, or persisted state.
25
+ - The section introduces a new dependency, provider, service, storage model, permission boundary, or external integration.
26
+ - The section depends on knowledge files that are missing, stale, or too thin to support a low-risk classification.
27
+
28
+ `routine` means the section follows established repo patterns, is low-risk, and has enough grounding to draft silently. It does not mean the section is unimportant; it still appears in the committed design and final review gate.
29
+
30
+ ## Adequate Grounding
31
+
32
+ Grounding is adequate when at least one strong source, or two weaker sources, exists for the design surface:
33
+
34
+ - Strong sources: `.oat/repo/knowledge/project-index.md`, `.oat/repo/knowledge/architecture.md`, or a configured docs app with relevant architecture/convention docs.
35
+ - Weaker sources: non-thin `docs/`, `.oat/repo/knowledge/conventions.md`, `.oat/repo/knowledge/stack.md`, `.oat/repo/knowledge/concerns.md`, discovery notes with concrete implementation context, or existing nearby implementation patterns found in the repo.
36
+
37
+ Treat grounding as broadly absent when discovery skipped solution-space exploration and the knowledge base/docs are sparse. In that case, do not recommend Selective Collaborative; prefer Collaborative.
38
+
39
+ ## Recommendation Rules
40
+
41
+ Before the picker, run a lightweight classification preflight against the shared section list. Assign Selective Collaborative one of four states:
42
+
43
+ - `recommended`: grounding is adequate and at least 3 sections, or roughly 30-40% of sections, classify as `routine`.
44
+ - `available`: grounding is adequate but Collaborative is still the safer default.
45
+ - `available-not-recommended`: grounding exists, but savings are marginal for this design.
46
+ - `unavailable`: grounding is broadly absent.
47
+
48
+ Default recommendation is Collaborative when in doubt. Draft-and-review is never the picker default unless explicitly selected through argument, environment, or config.
49
+
50
+ ## Edge Cases
51
+
52
+ - If every section is `needs-eyes`, Selective Collaborative collapses to Collaborative. Emit: "All sections flagged for review — running as full collaborative."
53
+ - If zero sections are `needs-eyes`, force `Overview + Architecture` to `needs-eyes` so the user sees the framing before silent drafting continues.
54
+ - If a user elevates a `routine` section in the Section Review Plan, keep it `needs-eyes` for the rest of the run.
55
+ - If the user chooses "walk me through every remaining section" during a needs-eyes confirmation, mark all remaining sections `needs-eyes`.
56
+ - If the classification cannot explain its reason in one sentence, treat the section as `needs-eyes`.
57
+
58
+ ## Examples
59
+
60
+ Routine example:
61
+
62
+ | Section | Classification | Reason | Signals hit |
63
+ | ---------------- | -------------- | -------------------------------------------------------------------------------------------------- | ------------------- |
64
+ | Testing Strategy | routine | Follows existing requirement-to-test mapping pattern and no discovery uncertainty touches testing. | established pattern |
65
+
66
+ Needs-eyes example:
67
+
68
+ | Section | Classification | Reason | Signals hit |
69
+ | ---------- | -------------- | --------------------------------------------------------------------- | ------------------------------------------- |
70
+ | API Design | needs-eyes | Adds a new public CLI/config surface that changes workflow semantics. | public API/CLI/config, user-facing defaults |
71
+
72
+ ## Dogfood Notes
73
+
74
+ Use this section to capture misclassifications found while dogfooding Selective Collaborative mode. Keep entries short and actionable.
75
+
76
+ Template:
77
+
78
+ ```markdown
79
+ - Date/project:
80
+ - Section:
81
+ - Classified as:
82
+ - Should have been:
83
+ - Missed or overweighted signal:
84
+ - Prose adjustment:
85
+ ```
86
+
87
+ ### Dogfood run 2026-04-30: collaborative-design-workflow
88
+
89
+ Classification pass run manually against this project's own `spec.md`, `design.md`, `discovery.md`, and `.oat/repo/knowledge/*` context. Grounding was adequate (`project-index.md`, `architecture.md`, `conventions.md`, `stack.md`, and detailed discovery/design artifacts exist). Result: Selective Collaborative would be `recommended` because 3 of 12 sections classify as `routine` while high-risk sections still receive live review.
90
+
91
+ | Section | Classified As | Expected? | Notes |
92
+ | --------------------------------------------------- | ------------- | --------- | --------------------------------------------------------------------- |
93
+ | Overview + Architecture | needs-eyes | yes | Forced floor; user should see framing before any silent drafting. |
94
+ | Component Design | needs-eyes | yes | Cross-skill workflow semantics and config/skill boundaries changed. |
95
+ | Data Models | routine | yes | No database/domain model changes; config risk covered elsewhere. |
96
+ | API Design | needs-eyes | yes | Public CLI/config surface changes via `workflow.designMode`. |
97
+ | Security Considerations | needs-eyes | yes | High-risk-by-default section. |
98
+ | Performance Considerations | needs-eyes | yes | High-risk-by-default section. |
99
+ | Error Handling | needs-eyes | yes | High-risk-by-default section. |
100
+ | Testing Strategy (with Requirement-to-Test Mapping) | needs-eyes | yes | New prose-contract validation plus manual dogfood acceptance surface. |
101
+ | Deployment Strategy | routine | yes | No deployment-path change; release packaging validated separately. |
102
+ | Migration Plan | needs-eyes | yes | High-risk-by-default section, even when no migration is expected. |
103
+ | Implementation Phases | routine | yes | Follows established OAT plan/task structure. |
104
+ | Risks and Mitigation | needs-eyes | yes | New user-facing workflow mode and heuristic failure modes. |
105
+
106
+ No classification misfires were identified in this artifact-only pass. Live picker taxonomy, mid-flight elevation, and final recap behavior still require an interactive dogfood run because `oat-project-design` is a provider skill, not an executable CLI command.
107
+
108
+ Deferred follow-up dogfood after this PR opens:
109
+
110
+ - Exercise picker taxonomy live paths: `Recommended`, `Available / not recommended`, and `Unavailable`.
111
+ - Select "walk me through every remaining section" during a needs-eyes confirmation and verify every remaining section is presented.
112
+ - Confirm the final user-review gate lists sections drafted without live confirmation.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: oat-project-discover
3
- version: 1.3.0
3
+ version: 2.0.0
4
4
  description: Use when starting a project or when requirements are still unclear. Runs structured discovery to gather requirements, constraints, and context.
5
5
  disable-model-invocation: true
6
6
  user-invocable: true
@@ -322,7 +322,7 @@ If `"discovery"` is in `oat_hill_checkpoints`, require explicit user approval be
322
322
 
323
323
  **Approval prompt (required):**
324
324
 
325
- - "Discovery artifact is ready. Approve discovery and unlock `oat-project-spec`?"
325
+ - "Discovery artifact is ready. Approve discovery and unlock `oat-project-design`?"
326
326
 
327
327
  **Optional independent review path:**
328
328
 
@@ -347,7 +347,7 @@ Update frontmatter:
347
347
  ```yaml
348
348
  ---
349
349
  oat_status: complete
350
- oat_ready_for: oat-project-spec
350
+ oat_ready_for: oat-project-design
351
351
  ---
352
352
  ```
353
353
 
@@ -383,7 +383,7 @@ Key decisions:
383
383
  - {Decision 1}
384
384
  - {Decision 2}
385
385
 
386
- Ready for specification phase"
386
+ Ready for design phase"
387
387
  ```
388
388
 
389
389
  ### Step 15: Output Summary
@@ -391,5 +391,9 @@ Ready for specification phase"
391
391
  ```
392
392
  Discovery phase complete for {project-name}.
393
393
 
394
- Next: Create specification with the oat-project-spec skill
394
+ Next: Create design with the oat-project-design skill (which will confirm
395
+ requirements automatically and produce both spec.md and design.md).
396
+
397
+ If you'd rather formalize requirements without designing yet, run
398
+ `oat-project-spec` as a standalone step.
395
399
  ```
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: oat-project-quick-start
3
- version: 1.3.6
3
+ version: 2.0.2
4
4
  description: Use when a task is small enough for quick mode or rapid iteration is preferred. Scaffolds a lightweight OAT project from discovery directly to a runnable plan, with optional brainstorming and lightweight design.
5
5
  argument-hint: '<project-name> ["project description"]'
6
6
  disable-model-invocation: true
@@ -170,7 +170,7 @@ git diff --cached --quiet || git commit -m "chore(oat): capture quick-start disc
170
170
 
171
171
  ### Step 2.5: Decision Point — Design Depth
172
172
 
173
- **Auto-advance rule:** If the request was classified as **well-understood** in Step 2a and discovery surfaced no architecture decisions, component boundary questions, or unexpected complexity, skip this decision point entirely and continue directly to Step 3. This preserves the minimal-ceremony contract for straightforward requests.
173
+ **Auto-advance rule:** If the request was classified as **well-understood** in Step 2a and discovery surfaced no architecture decisions, component boundary questions, or unexpected complexity, skip this decision point entirely and continue directly to Step 2.6 (the requirements gate still fires before plan generation). This preserves the minimal-ceremony contract for straightforward requests.
174
174
 
175
175
  **Otherwise**, present the user with a choice about how to proceed:
176
176
 
@@ -188,15 +188,15 @@ Use `AskUserQuestion` to present this choice.
188
188
  - If discovery surfaced architecture choices, component boundaries, or data model questions → recommend "Lightweight design first"
189
189
  - If discovery revealed the scope is larger or more complex than initially expected → recommend "Promote to spec-driven"
190
190
 
191
- **If user chooses "Straight to plan":** continue to Step 3.
191
+ **If user chooses "Straight to plan":** continue to Step 2.6 (requirements gate), then Step 3.
192
192
 
193
- **If user chooses "Lightweight design first":** execute Step 2.75 before continuing to Step 3.
193
+ **If user chooses "Lightweight design first":** execute Step 2.75 before continuing to Step 3. The Step 2.6 requirements gate is skipped — Step 2.75's in-conversation design validation covers that ground.
194
194
 
195
195
  **If user chooses "Promote to spec-driven":**
196
196
 
197
197
  - Update `discovery.md` frontmatter:
198
198
  - `oat_status: complete`
199
- - `oat_ready_for: oat-project-spec`
199
+ - `oat_ready_for: oat-project-design`
200
200
  - `oat_last_updated: {today}`
201
201
  - Update `state.md`:
202
202
  - `oat_workflow_mode: spec-driven`
@@ -211,9 +211,105 @@ git add "$PROJECT_PATH/discovery.md" "$PROJECT_PATH/state.md" ".oat/state.md"
211
211
  git diff --cached --quiet || git commit -m "chore(oat): promote quick-start discovery for {project-name}"
212
212
  ```
213
213
 
214
- - Inform the user: "Discovery is complete. Run `oat-project-spec` next to formalize requirements."
214
+ - Inform the user: "Discovery is complete. Run `oat-project-design` next it will confirm requirements and produce both `spec.md` and `design.md` in one collaborative pass. If you'd rather formalize requirements without designing yet, `oat-project-spec` remains available as an optional standalone step."
215
215
  - Stop here. Do not generate a plan.
216
216
 
217
+ ### Step 2.6: Requirements Gate (Straight-to-Plan Path)
218
+
219
+ Fires only when the straight-to-plan path was chosen at Step 2.5 (explicit choice or auto-advance). Skip when the user selected "Lightweight design first" (Step 2.75 handles its own in-conversation confirmation) or "Promote to spec-driven".
220
+
221
+ Single conversational turn — no loop inside the gate. If the user materially redirects scope, route OUT to lightweight design or back to discovery.
222
+
223
+ > **Tool availability is not the same as interactivity.** If `AskUserQuestion` is unavailable but chat is available, present this gate as a plain chat message and wait for the user's reply. Do not auto-confirm just because the structured question tool is missing.
224
+
225
+ ```
226
+ # Explicit non-interactive fallback FIRST (FR9 contract; same signal as
227
+ # design mode choice). Lack of AskUserQuestion alone is NOT non-interactive
228
+ # — if chat with the user is available, present the gate as a plain chat
229
+ # message and wait for their reply instead.
230
+ if [ "${OAT_NON_INTERACTIVE:-}" = "1" ] || no_user_response_channel_exists; then
231
+ echo "Requirements gate auto-confirmed in non-interactive mode."
232
+ # proceed to Step 3
233
+ fi
234
+
235
+ # Interactive bypass (power-user opt-out).
236
+ if [ "${OAT_NO_REQUIREMENTS_GATE:-}" = "1" ] || [ "$ARG_NO_GATE" = "1" ]; then
237
+ # proceed to Step 3 silently
238
+ fi
239
+
240
+ # Extract requirements from discovery.md:
241
+ # - Key Decisions
242
+ # - Success Criteria
243
+ # - Constraints
244
+ # Format as bullet list and present (SINGLE TURN):
245
+ #
246
+ # > "Before I generate the plan, here are the requirements I'm building against:
247
+ # >
248
+ # > Key decisions:
249
+ # > - [decision 1]
250
+ # > - [decision 2]
251
+ # >
252
+ # > Success criteria:
253
+ # > - [criterion 1]
254
+ # >
255
+ # > Constraints:
256
+ # > - [constraint 1]
257
+ # >
258
+ # > Does this match what you want?"
259
+
260
+ # AskUserQuestion multi-choice:
261
+ # 1. Yes — proceed to plan generation
262
+ # 2. Add a minor requirement that still fits this scope (capture inline, proceed — no re-present)
263
+ # 3. Scope needs redirecting — rework discovery or produce a lightweight design first
264
+ #
265
+ # On choice 1: continue to Step 3.
266
+ # On choice 2: prompt once for the addition, append to discovery.md, proceed to Step 3 (do NOT re-present).
267
+ # On choice 3: exit the gate cleanly. Present follow-up choice:
268
+ # a. Produce a lightweight design first (run Step 2.75)
269
+ # b. Expand discovery (return to Step 2)
270
+ # Route the user accordingly. Do NOT loop back into the gate.
271
+ ```
272
+
273
+ ### Step 2.75a: Lightweight Design Mode Choice
274
+
275
+ Resolve the interaction mode before drafting. Same mechanics as the full `oat-project-design` skill (Component 1): argument precedes env var, config fallback, **explicit** non-interactive fallback to draft.
276
+
277
+ > **Tool availability is not the same as interactivity.** If `AskUserQuestion` is unavailable but chat is available, ask the mode-choice question as a plain chat message and wait for the user's reply. Only fall back to draft when `OAT_NON_INTERACTIVE=1` is set or there is no user-response channel at all.
278
+
279
+ ```
280
+ DESIGN_MODE="${ARG_MODE:-${OAT_DESIGN_MODE:-}}"
281
+ if [ -z "$DESIGN_MODE" ]; then
282
+ if [ "${OAT_NON_INTERACTIVE:-}" = "1" ] || no_user_response_channel_exists; then
283
+ DESIGN_MODE="draft"
284
+ echo "Non-interactive context detected. Falling back to draft-and-review mode."
285
+ else
286
+ # Consult persisted preference (FR15 / Component 14) before prompting
287
+ CONFIG_MODE=$(oat config get workflow.designMode 2>/dev/null || echo "")
288
+ if [ "$CONFIG_MODE" = "collaborative" ] || [ "$CONFIG_MODE" = "selective" ] || [ "$CONFIG_MODE" = "draft" ]; then
289
+ DESIGN_MODE="$CONFIG_MODE"
290
+ if [ "$DESIGN_MODE" = "selective" ]; then
291
+ DESIGN_MODE="collaborative"
292
+ echo "Using workflow.designMode = selective from config (treating as collaborative for lightweight design; Selective Collaborative is only available in full oat-project-design)."
293
+ else
294
+ echo "Using workflow.designMode = ${DESIGN_MODE} from config."
295
+ fi
296
+ else
297
+ # Prefer AskUserQuestion for structured multi-choice when available.
298
+ # If AskUserQuestion is unavailable, ask the same question as a plain
299
+ # chat message and wait for the user's reply. Do NOT switch to draft
300
+ # mode just because the structured tool is missing.
301
+ #
302
+ # Prompt (SAME text as oat-project-design Step 1.5):
303
+ # "How would you like to work through the lightweight design?
304
+ # 1. Collaborative (recommended) — section-by-section, one approach confirmation before drafting
305
+ # 2. Draft-and-review — full draft up front, you review holistically"
306
+ :
307
+ fi
308
+ fi
309
+ fi
310
+ echo "Running in ${DESIGN_MODE} mode."
311
+ ```
312
+
217
313
  ### Step 2.75: Lightweight Design (Optional)
218
314
 
219
315
  Produce a focused `design.md` covering only what's needed for a quality plan. This is NOT the full spec-driven design — it's a quick architectural sketch.
@@ -242,14 +338,37 @@ Copy template: `.oat/templates/design.md` → `"$PROJECT_PATH/design.md"`
242
338
  - Dependencies (captured in discovery instead)
243
339
  - Risks and Mitigation (captured in discovery instead)
244
340
 
245
- **Present design incrementally for validation:**
246
-
247
- 1. Draft architecture overview → present to user for validation
248
- 2. Draft component design → present to user for validation
249
- 3. Draft data flow + testing approach → present to user for validation
250
- 4. Finalize `design.md`
341
+ **Draft the design based on `DESIGN_MODE` (resolved in Step 2.75a):**
251
342
 
252
- After each chunk, ask: "Does this look right, or should we adjust before continuing?"
343
+ ```
344
+ IF DESIGN_MODE == "collaborative":
345
+ For SECTION in [Overview, Architecture, Component Design, Testing Strategy
346
+ (required); Data Models, API Design, Error Handling
347
+ (include only when relevant); SKIP Security, Performance,
348
+ Deployment, Migration]:
349
+ Draft section content. Scale each section to its complexity:
350
+ a few sentences if straightforward, up to 200-300 words if nuanced.
351
+ Not-applicable sections: state as a single sentence, not empty.
352
+ Present:
353
+ "Here's what I have for [section]: [content].
354
+ Does this look right, or should we adjust before continuing?"
355
+ Use AskUserQuestion for the validation prompt.
356
+ Revise inline on feedback. Be ready to go back and clarify if something
357
+ doesn't make sense. Re-present if substantive.
358
+ Mark section approved. Move to next.
359
+
360
+ IF DESIGN_MODE == "draft":
361
+ Draft all required sections (Overview, Architecture, Component Design,
362
+ Testing Strategy) and any applicable optional sections (Data Models,
363
+ API Design, Error Handling) in ONE pass (same reduced section set).
364
+ Scale each section to its complexity — no per-section prompts fire.
365
+ Run the FULL 4-check self-review (placeholder + internal consistency +
366
+ scope + ambiguity). No scaled-down variant — identical to the full
367
+ oat-project-design self-review.
368
+ Present the user-review gate wording (adapted for quick-start:
369
+ no HiLL gate by default; commits-first is still in effect).
370
+ Produce design.md only — NO spec.md is written by lightweight design.
371
+ ```
253
372
 
254
373
  If `design.md` or `state.md` was updated before one of these validation pauses, commit those artifact changes before waiting for the user response.
255
374
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: oat-project-spec
3
- version: 1.2.0
4
- description: Use when discovery is complete and the project needs a formal requirements baseline. Transforms discovery output into structured specification artifacts.
3
+ version: 2.0.0
4
+ description: Optional standalone skill for formalizing requirements into a structured spec.md when discovery is complete but you're not ready to design yet. Independent of the design workflow oat-project-design confirms requirements automatically and does not require this skill to be run first.
5
5
  disable-model-invocation: true
6
6
  user-invocable: true
7
7
  allowed-tools: Read, Write, Bash(git:*), Glob, Grep, AskUserQuestion
@@ -450,7 +450,7 @@ Ready for design phase"
450
450
  ### Step 21: Output Summary
451
451
 
452
452
  ```
453
- Specification phase complete for {project-name}.
453
+ Specification artifact created for {project-name}.
454
454
 
455
455
  Created:
456
456
  - {N} functional requirements
@@ -458,7 +458,12 @@ Created:
458
458
  - High-level design approach
459
459
  - Success metrics
460
460
 
461
- Next: Create detailed design with the oat-project-design skill
461
+ Note: This skill is optional in the default workflow. `oat-project-design`
462
+ will confirm requirements automatically when run after discovery.
463
+
464
+ If you want to proceed to design now, run: `oat-project-design`
465
+ If you're parking the project here, the spec.md is committed and ready
466
+ to pick up later.
462
467
  ```
463
468
 
464
469
  ## Success Criteria
@@ -129,7 +129,16 @@ _Include this section only when the request is exploratory or multiple viable ap
129
129
 
130
130
  Use this discovery artifact to drive the next workflow step:
131
131
 
132
- - **Quick mode → straight to plan:** proceed directly to `plan.md` when scope is clear and no architecture decisions remain.
133
- - **Quick mode optional lightweight design:** produce a focused `design.md` (architecture, components, data flow, testing) before planning. Choose this when discovery surfaced architecture choices or component boundaries.
134
- - **Quick mode → promote:** escalate to spec-driven if discovery revealed the scope is larger or more complex than expected.
135
- - **Spec-driven mode:** continue to `oat-project-spec` (after HiLL approval if configured).
132
+ - **Spec-driven mode:** continue to `oat-project-design` (which confirms
133
+ requirements and produces both `spec.md` and `design.md`).
134
+ - **Spec-driven mode → formalize-only:** use `oat-project-spec` standalone
135
+ if you want a formalized requirements artifact but aren't ready to
136
+ design yet.
137
+ - **Quick mode → straight to plan:** proceed directly to `plan.md` when
138
+ scope is clear and no architecture decisions remain.
139
+ - **Quick mode → optional lightweight design:** produce a focused
140
+ `design.md` (architecture, components, data flow, testing) before
141
+ planning. Choose this when discovery surfaced architecture choices
142
+ or component boundaries.
143
+ - **Quick mode → promote:** escalate to spec-driven if discovery revealed
144
+ the scope is larger or more complex than expected.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/config/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,KAAK,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAGhF,OAAO,EACL,KAAK,SAAS,EACd,KAAK,cAAc,EAGnB,KAAK,UAAU,EAOhB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAEL,KAAK,cAAc,EAEpB,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAqDpC,UAAU,yBAAyB;IACjC,mBAAmB,EAAE,CACnB,OAAO,EAAE,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC,CAAC,CAAC,KAC/C,cAAc,CAAC;IACpB,kBAAkB,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;IACrD,aAAa,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,SAAS,CAAC,CAAC;IACxD,cAAc,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,SAAS,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IACvE,kBAAkB,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,cAAc,CAAC,CAAC;IAClE,mBAAmB,EAAE,CACnB,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,cAAc,KACnB,OAAO,CAAC,IAAI,CAAC,CAAC;IACnB,cAAc,EAAE,CAAC,aAAa,EAAE,MAAM,KAAK,OAAO,CAAC,UAAU,CAAC,CAAC;IAC/D,eAAe,EAAE,CAAC,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9E,mBAAmB,EAAE,CACnB,QAAQ,EAAE,MAAM,EAChB,GAAG,EAAE,MAAM,CAAC,UAAU,KACnB,OAAO,CAAC,MAAM,CAAC,CAAC;IACrB,sBAAsB,EAAE,CACtB,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,MAAM,EACrB,GAAG,EAAE,MAAM,CAAC,UAAU,KACnB,OAAO,CAAC,cAAc,CAAC,CAAC;IAC7B,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC;CAC/B;AAwjCD,wBAAgB,mBAAmB,CACjC,SAAS,GAAE,OAAO,CAAC,yBAAyB,CAAM,GACjD,OAAO,CA0GT"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/config/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,KAAK,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAGhF,OAAO,EACL,KAAK,SAAS,EACd,KAAK,cAAc,EAGnB,KAAK,UAAU,EAOhB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAEL,KAAK,cAAc,EAEpB,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAsDpC,UAAU,yBAAyB;IACjC,mBAAmB,EAAE,CACnB,OAAO,EAAE,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC,CAAC,CAAC,KAC/C,cAAc,CAAC;IACpB,kBAAkB,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;IACrD,aAAa,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,SAAS,CAAC,CAAC;IACxD,cAAc,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,SAAS,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IACvE,kBAAkB,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,cAAc,CAAC,CAAC;IAClE,mBAAmB,EAAE,CACnB,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,cAAc,KACnB,OAAO,CAAC,IAAI,CAAC,CAAC;IACnB,cAAc,EAAE,CAAC,aAAa,EAAE,MAAM,KAAK,OAAO,CAAC,UAAU,CAAC,CAAC;IAC/D,eAAe,EAAE,CAAC,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9E,mBAAmB,EAAE,CACnB,QAAQ,EAAE,MAAM,EAChB,GAAG,EAAE,MAAM,CAAC,UAAU,KACnB,OAAO,CAAC,MAAM,CAAC,CAAC;IACrB,sBAAsB,EAAE,CACtB,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,MAAM,EACrB,GAAG,EAAE,MAAM,CAAC,UAAU,KACnB,OAAO,CAAC,cAAc,CAAC,CAAC;IAC7B,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC;CAC/B;AAskCD,wBAAgB,mBAAmB,CACjC,SAAS,GAAE,OAAO,CAAC,yBAAyB,CAAM,GACjD,OAAO,CA0GT"}
@@ -36,6 +36,7 @@ const KEY_ORDER = [
36
36
  'workflow.reviewExecutionModel',
37
37
  'workflow.autoReviewAtHillCheckpoints',
38
38
  'workflow.autoNarrowReReviewScope',
39
+ 'workflow.designMode',
39
40
  'worktrees.root',
40
41
  ];
41
42
  const CONFIG_CATALOG = [
@@ -369,6 +370,17 @@ const CONFIG_CATALOG = [
369
370
  owningCommand: 'oat config set workflow.autoNarrowReReviewScope <true|false>',
370
371
  description: 'Auto-narrow re-review scope to fix-task commits in oat-project-review-provide when re-reviewing completed fix tasks. Has no effect on initial reviews (there is nothing to narrow to). When unset, the skill prompts. Resolution: env > local > shared > user > default.',
371
372
  },
373
+ {
374
+ key: 'workflow.designMode',
375
+ group: 'Workflow Preferences (3-layer: local > shared > user)',
376
+ file: '.oat/config.local.json | .oat/config.json | ~/.oat/config.json',
377
+ scope: 'workflow',
378
+ type: 'collaborative | selective | draft',
379
+ defaultValue: 'unset',
380
+ mutability: 'read/write',
381
+ owningCommand: 'oat config set workflow.designMode <value>',
382
+ description: 'Persisted preference for oat-project-design: "collaborative" runs every section section-by-section, "selective" drafts routine sections silently and live-reviews high-risk sections, and "draft" drafts the full design up front for holistic review. Quick-start lightweight design supports collaborative/draft only and treats selective as collaborative when encountered. When unset, the skill prompts. Runtime signals (OAT_NON_INTERACTIVE=1, no TTY) always outrank this preference. Resolution: arg > env > non-interactive context > local > shared > user > default.',
383
+ },
372
384
  {
373
385
  key: 'sync.defaultStrategy',
374
386
  group: 'Sync/Provider (.oat/sync/config.json)',
@@ -430,6 +442,7 @@ const WORKFLOW_ENUM_VALUES = {
430
442
  'workflow.hillCheckpointDefault': ['every', 'final'],
431
443
  'workflow.postImplementSequence': ['wait', 'summary', 'pr', 'docs-pr'],
432
444
  'workflow.reviewExecutionModel': ['subagent', 'inline', 'fresh-session'],
445
+ 'workflow.designMode': ['collaborative', 'selective', 'draft'],
433
446
  };
434
447
  const WORKFLOW_BOOLEAN_KEYS = new Set([
435
448
  'workflow.archiveOnComplete',
@@ -17,6 +17,7 @@ export interface OatArchiveConfig {
17
17
  export type WorkflowHillCheckpointDefault = 'every' | 'final';
18
18
  export type WorkflowPostImplementSequence = 'wait' | 'summary' | 'pr' | 'docs-pr';
19
19
  export type WorkflowReviewExecutionModel = 'subagent' | 'inline' | 'fresh-session';
20
+ export type WorkflowDesignMode = 'collaborative' | 'selective' | 'draft';
20
21
  export interface OatWorkflowConfig {
21
22
  hillCheckpointDefault?: WorkflowHillCheckpointDefault;
22
23
  archiveOnComplete?: boolean;
@@ -25,6 +26,7 @@ export interface OatWorkflowConfig {
25
26
  reviewExecutionModel?: WorkflowReviewExecutionModel;
26
27
  autoReviewAtHillCheckpoints?: boolean;
27
28
  autoNarrowReReviewScope?: boolean;
29
+ designMode?: WorkflowDesignMode;
28
30
  }
29
31
  export type OatToolsConfig = Partial<Record<'core' | 'ideas' | 'docs' | 'workflows' | 'utility' | 'project-management' | 'research', boolean>>;
30
32
  export interface OatConfig {
@@ -1 +1 @@
1
- {"version":3,"file":"oat-config.d.ts","sourceRoot":"","sources":["../../src/config/oat-config.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"oat-config.d.ts","sourceRoot":"","sources":["../../src/config/oat-config.ts"],"names":[],"mappings":"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"}
@@ -10,6 +10,11 @@ const VALID_REVIEW_EXECUTION_MODELS = [
10
10
  'inline',
11
11
  'fresh-session',
12
12
  ];
13
+ const VALID_DESIGN_MODES = [
14
+ 'collaborative',
15
+ 'selective',
16
+ 'draft',
17
+ ];
13
18
  function normalizeWorkflowConfig(parsed) {
14
19
  if (!isRecord(parsed)) {
15
20
  return undefined;
@@ -42,6 +47,10 @@ function normalizeWorkflowConfig(parsed) {
42
47
  if (typeof parsed.autoNarrowReReviewScope === 'boolean') {
43
48
  next.autoNarrowReReviewScope = parsed.autoNarrowReReviewScope;
44
49
  }
50
+ if (typeof parsed.designMode === 'string' &&
51
+ VALID_DESIGN_MODES.includes(parsed.designMode)) {
52
+ next.designMode = parsed.designMode;
53
+ }
45
54
  return Object.keys(next).length > 0 ? next : undefined;
46
55
  }
47
56
  const DEFAULT_OAT_CONFIG = { version: 1 };
@@ -1 +1 @@
1
- {"version":3,"file":"resolve.d.ts","sourceRoot":"","sources":["../../src/config/resolve.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,SAAS,EACd,KAAK,cAAc,EACnB,KAAK,UAAU,EAChB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,oBAAoB,GAC5B,QAAQ,GACR,OAAO,GACP,MAAM,GACN,KAAK,GACL,SAAS,CAAC;AAEd,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,OAAO,CAAC;IACf,MAAM,EAAE,oBAAoB,CAAC;CAC9B;AAED,MAAM,WAAW,cAAc;IAC7B,MAAM,EAAE,SAAS,CAAC;IAClB,KAAK,EAAE,cAAc,CAAC;IACtB,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC;CAC5C;AAED,MAAM,WAAW,kCAAkC;IACjD,aAAa,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,SAAS,CAAC,CAAC;IACxD,kBAAkB,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,cAAc,CAAC,CAAC;IAClE,cAAc,EAAE,CAAC,aAAa,EAAE,MAAM,KAAK,OAAO,CAAC,UAAU,CAAC,CAAC;CAChE;AAgED,wBAAsB,sBAAsB,CAC1C,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,MAAM,EACrB,GAAG,GAAE,MAAM,CAAC,UAAwB,EACpC,SAAS,GAAE,OAAO,CAAC,kCAAkC,CAAM,GAC1D,OAAO,CAAC,cAAc,CAAC,CAgFzB"}
1
+ {"version":3,"file":"resolve.d.ts","sourceRoot":"","sources":["../../src/config/resolve.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,SAAS,EACd,KAAK,cAAc,EACnB,KAAK,UAAU,EAChB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,oBAAoB,GAC5B,QAAQ,GACR,OAAO,GACP,MAAM,GACN,KAAK,GACL,SAAS,CAAC;AAEd,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,OAAO,CAAC;IACf,MAAM,EAAE,oBAAoB,CAAC;CAC9B;AAED,MAAM,WAAW,cAAc;IAC7B,MAAM,EAAE,SAAS,CAAC;IAClB,KAAK,EAAE,cAAc,CAAC;IACtB,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC;CAC5C;AAED,MAAM,WAAW,kCAAkC;IACjD,aAAa,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,SAAS,CAAC,CAAC;IACxD,kBAAkB,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,cAAc,CAAC,CAAC;IAClE,cAAc,EAAE,CAAC,aAAa,EAAE,MAAM,KAAK,OAAO,CAAC,UAAU,CAAC,CAAC;CAChE;AAiED,wBAAsB,sBAAsB,CAC1C,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,MAAM,EACrB,GAAG,GAAE,MAAM,CAAC,UAAwB,EACpC,SAAS,GAAE,OAAO,CAAC,kCAAkC,CAAM,GAC1D,OAAO,CAAC,cAAc,CAAC,CAgFzB"}
@@ -49,6 +49,7 @@ const DEFAULT_WORKFLOW_CONFIG = {
49
49
  reviewExecutionModel: null,
50
50
  autoReviewAtHillCheckpoints: null,
51
51
  autoNarrowReReviewScope: null,
52
+ designMode: null,
52
53
  },
53
54
  };
54
55
  const ENV_OVERRIDE_MAP = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-agent-toolkit/cli",
3
- "version": "0.0.53",
3
+ "version": "0.0.54",
4
4
  "private": false,
5
5
  "description": "Open Agent Toolkit CLI",
6
6
  "homepage": "https://github.com/voxmedia/open-agent-toolkit/tree/main/packages/cli",
@@ -33,7 +33,7 @@
33
33
  "ora": "^9.0.0",
34
34
  "yaml": "2.8.2",
35
35
  "zod": "^3.25.76",
36
- "@open-agent-toolkit/control-plane": "0.0.53"
36
+ "@open-agent-toolkit/control-plane": "0.0.54"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/node": "^22.10.0",