@open-agent-toolkit/cli 0.1.42 → 0.1.43

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 (31) hide show
  1. package/assets/agents/oat-phase-implementer.md +11 -7
  2. package/assets/agents/oat-reviewer.md +6 -4
  3. package/assets/docs/cli-utilities/configuration.md +51 -35
  4. package/assets/docs/reference/oat-directory-structure.md +26 -24
  5. package/assets/docs/workflows/projects/dispatch-ceiling.md +128 -85
  6. package/assets/docs/workflows/projects/implementation-execution.md +68 -45
  7. package/assets/docs/workflows/projects/index.md +2 -2
  8. package/assets/docs/workflows/projects/lifecycle.md +17 -2
  9. package/assets/public-package-versions.json +4 -4
  10. package/assets/skills/oat-project-implement/SKILL.md +181 -91
  11. package/assets/skills/oat-project-plan/SKILL.md +60 -29
  12. package/assets/skills/oat-project-plan-writing/SKILL.md +10 -10
  13. package/assets/skills/oat-project-quick-start/SKILL.md +60 -29
  14. package/assets/templates/plan.md +4 -4
  15. package/assets/templates/state.md +7 -3
  16. package/dist/commands/config/index.d.ts.map +1 -1
  17. package/dist/commands/config/index.js +66 -3
  18. package/dist/commands/project/dispatch-ceiling/index.d.ts.map +1 -1
  19. package/dist/commands/project/dispatch-ceiling/index.js +296 -49
  20. package/dist/config/dispatch-ceiling-preset.d.ts +37 -1
  21. package/dist/config/dispatch-ceiling-preset.d.ts.map +1 -1
  22. package/dist/config/dispatch-ceiling-preset.js +20 -0
  23. package/dist/config/oat-config.d.ts +10 -1
  24. package/dist/config/oat-config.d.ts.map +1 -1
  25. package/dist/config/oat-config.js +20 -1
  26. package/dist/config/resolve.d.ts.map +1 -1
  27. package/dist/config/resolve.js +4 -0
  28. package/dist/providers/ceiling/registry.d.ts.map +1 -1
  29. package/dist/providers/ceiling/registry.js +6 -1
  30. package/dist/providers/codex/codec/sync-extension.js +1 -1
  31. package/package.json +2 -2
@@ -12,8 +12,8 @@ This page covers how `oat-project-implement` actually runs a plan: tier selectio
12
12
  - **When to use:** you have a plan ready and want to understand what happens during `oat-project-implement`.
13
13
  - **Unit of dispatch:** one phase at a time (not one task). A phase implementer executes all tasks in the phase, commits per task, and returns a single summary.
14
14
  - **Two tiers, one lock:** capability detection picks Tier 1 (native subagents) or Tier 2 (inline) at start. The tier is locked for the whole run — no mid-run downgrades.
15
- - **Dispatch ceiling:** implementation resolves an OAT-owned, provider-neutral ceiling before work starts. A ceiling is set as a preset (`balanced`, `maximum`, `cost-conscious`) or per-provider advanced values; runtime dispatch reads only the compiled concrete values. Codex uses effort values (`low`, `medium`, `high`, `xhigh`); Claude uses model tiers (`haiku`, `sonnet`, `opus`).
16
- - **Runtime dispatch:** each phase uses the lowest available model/effort/control that can confidently complete the work, capped by the resolved dispatch ceiling, unless `plan.md` includes an explicit Dispatch Profile override.
15
+ - **Dispatch policy:** implementation resolves an OAT-owned dispatch policy before work starts. Managed policies are `Economy`, `Balanced`, `High`, `Frontier`, and `Uncapped`; `Inherit Host Defaults` explicitly leaves model/effort controls to the host.
16
+ - **Runtime dispatch:** each phase uses the lowest available model/effort/control that can confidently complete the work. Capped managed policies cap preferred selections, managed `Uncapped` uses preferred selections directly, and inherit/default mode uses no OAT-selected control.
17
17
 
18
18
  ## Execution model
19
19
 
@@ -35,11 +35,11 @@ The selected tier is reported to the user and locked for the remainder of the ru
35
35
  → Selected: Tier 1 — Subagents
36
36
  ```
37
37
 
38
- ### Dispatch ceiling preflight
38
+ ### Dispatch policy preflight
39
39
 
40
- Before phase work starts, `oat-project-implement` resolves and prints the dispatch ceiling for the current provider. For the conceptual model and per-provider enforcement (Codex vs Claude vs unsupported), see [Dispatch Ceiling](dispatch-ceiling.md).
40
+ Before phase work starts, `oat-project-implement` resolves and prints the dispatch policy for the current provider. For the conceptual model and per-provider enforcement (Codex vs Claude vs unsupported), see [Dispatch Policy](dispatch-ceiling.md).
41
41
 
42
- The compiled resolver is the source of truth:
42
+ The resolver is the source of truth. The command name remains `dispatch-ceiling` for compatibility:
43
43
 
44
44
  ```bash
45
45
  oat project dispatch-ceiling resolve --provider codex --preflight --json
@@ -47,46 +47,50 @@ oat project dispatch-ceiling resolve --provider codex --preflight --json
47
47
 
48
48
  Resolution order:
49
49
 
50
- 1. `workflow.dispatchCeiling.providers.<provider>` from effective config
51
- 2. `oat_dispatch_ceiling` in project `state.md` frontmatter
52
- 3. Interactive implementation preflight prompt
53
- 4. Non-interactive unresolved state blocks before work starts
50
+ 1. `workflow.dispatchPolicy.mode` / `workflow.dispatchPolicy.policy` from effective config
51
+ 2. Compatibility `workflow.dispatchCeiling.providers.<provider>` from effective config
52
+ 3. `oat_dispatch_policy` in project `state.md` frontmatter
53
+ 4. Legacy `oat_dispatch_ceiling` in project `state.md` frontmatter
54
+ 5. Interactive implementation preflight prompt
55
+ 6. Non-interactive unresolved state blocks before work starts
54
56
 
55
- The ceiling is set via a preset or Advanced per-provider values. Runtime dispatch reads the compiled concrete provider values only — never the preset label. If no ceiling is configured, the interactive preflight prompt offers the preset choices; non-interactive mode blocks.
57
+ Runtime dispatch reads the resolved policy and provider-specific selection only. If no policy is configured, the interactive preflight prompt offers the policy choices; non-interactive mode blocks.
56
58
 
57
- **Preset options (interactive prompt):**
59
+ **Policy options (interactive prompt):**
58
60
 
59
- | Option | Codex | Claude |
60
- | -------------- | ---------------- | ---------------- |
61
- | Balanced | `high` | `sonnet` |
62
- | Maximum | `xhigh` | `opus` |
63
- | Cost-conscious | `medium` | `sonnet` |
64
- | Advanced | per-provider | per-provider |
65
- | No ceiling | provider default | provider default |
61
+ | Option | Mode | Codex | Claude |
62
+ | --------------------- | ------- | -------- | -------- |
63
+ | Economy | managed | `medium` | `sonnet` |
64
+ | Balanced | managed | `high` | `sonnet` |
65
+ | High | managed | `xhigh` | `opus` |
66
+ | Frontier | managed | `xhigh` | `fable` |
67
+ | Uncapped | managed | none | none |
68
+ | Inherit Host Defaults | inherit | none | none |
66
69
 
67
- For Codex, provider default effort is displayed when available but is not treated as the OAT ceiling. Provider default only explains base/unpinned role behavior.
70
+ For Codex, provider default effort is displayed when available but is not treated as managed `Uncapped` or as a cap. Provider defaults apply only to explicit inherit/default behavior or base/unpinned fallback paths.
68
71
 
69
72
  ```text
70
- Dispatch ceiling: high (codex, enforced — variant oat-phase-implementer-high)
71
- Source: project state | Preset: balanced
73
+ Dispatch policy: balanced (codex, managed capped pinned-variant)
74
+ Resolved cap: high
75
+ Source: project state
72
76
  Provider default effort: medium
73
- Note: OAT will use pinned subagent variants up to high. Base/unpinned roles resolve through the provider default.
77
+ Note: OAT will use pinned subagent variants up to high. Base/unpinned roles resolve through the provider default only on fallback paths.
74
78
  ```
75
79
 
76
80
  **Enforcement modes** (from resolver):
77
81
 
78
82
  - `enforced` — the adapter compiled concrete dispatch args and the provider accepted them (Codex: pinned variants; Claude: Task `model` parameter).
79
83
  - `advisory` — the provider is supported but no value resolved, or an upgrade request was not honored by the provider.
80
- - `unsupported` — the provider has no registered adapter; the ceiling is informational only. Dispatch follows provider defaults.
84
+ - `unsupported` — the provider has no registered adapter; the policy is informational only. Dispatch follows provider behavior.
81
85
 
82
- In non-interactive mode, an unresolved ceiling blocks before any implementation work:
86
+ In non-interactive mode, an unresolved policy blocks before any implementation work:
83
87
 
84
88
  ```text
85
- BLOCKED: Codex dispatch ceiling is unresolved in non-interactive mode.
86
- Set workflow.dispatchCeiling.providers.codex in .oat/config.json or oat_dispatch_ceiling in project state.
89
+ BLOCKED: Codex dispatch policy is unresolved in non-interactive mode.
90
+ Set workflow.dispatchPolicy.mode/workflow.dispatchPolicy.policy, workflow.dispatchCeiling.providers.codex, oat_dispatch_policy, or legacy oat_dispatch_ceiling.
87
91
  ```
88
92
 
89
- Dry-run reports unresolved ceiling and planned behavior without writing project state.
93
+ Dry-run reports unresolved policy and planned behavior without writing project state.
90
94
 
91
95
  ### Runtime dispatch selection
92
96
 
@@ -103,14 +107,14 @@ The orchestrator considers, in order:
103
107
  Model and effort are separate axes. Each axis logs one of these states:
104
108
 
105
109
  - `selected:<value>` — the host exposes the axis and the orchestrator chose a value.
106
- - `provider-default` — Codex base/unpinned role follows configured/provider default effort.
110
+ - `provider-default` — Codex base/unpinned role follows configured/provider default effort for explicit inherit/default behavior or fallback paths.
107
111
  - `inherited` — the host exposes the axis and the orchestrator deliberately defers to the parent session.
108
112
  - `not-applicable` — this host/API has no meaningful per-dispatch concept for that axis.
109
113
  - `host-auto` — exceptional; the host uses that axis internally but the orchestrator cannot read or pin it.
110
114
 
111
- In Codex, implementation and fix dispatch classify a preferred effort (`low`, `medium`, `high`, or `xhigh`) and pass it to `oat project dispatch-ceiling resolve --provider codex --role implementer --preferred <effort>`. The resolver selects `min(preferred, resolved_ceiling)` and returns the matching pinned role: `oat-phase-implementer-low`, `oat-phase-implementer-medium`, `oat-phase-implementer-high`, or `oat-phase-implementer-xhigh`. Reviewer dispatch uses the reviewer variant matching the resolved ceiling (`oat-reviewer-low|medium|high|xhigh`) for deterministic quality gates. Base/unpinned Codex roles are provider-default fallbacks; they should be logged as `provider-default`, not as inherited parent-session ceiling.
115
+ In Codex, implementation and fix dispatch classify a preferred effort (`low`, `medium`, `high`, or `xhigh`) and pass it to `oat project dispatch-ceiling resolve --provider codex --role implementer --preferred <effort>`. For capped managed policies, the resolver selects `min(preferred, resolved_cap)` and returns the matching pinned role. For managed `Uncapped`, the resolver selects the preferred pinned role with no cap. For inherit/default mode, it returns no pinned role and OAT uses the base/unpinned role. Reviewer dispatch targets the configured cap only when a capped managed policy exists; managed `Uncapped` and inherit/default use base `oat-reviewer` fallback.
112
116
 
113
- In Claude Code, implementation and fix dispatch classify a preferred model tier (`haiku`, `sonnet`, or `opus`) and pass it to `oat project dispatch-ceiling resolve --provider claude --role implementer --preferred <model> --orchestrator-tier <current-orchestrator-tier>`. The resolver selects `min(preferred, resolved_ceiling)` and returns the `model` argument to pass at dispatch. Reviewer dispatch targets the resolved Claude ceiling directly. The separate effort axis is `not-applicable`.
117
+ In Claude Code, implementation and fix dispatch classify a preferred model tier (`haiku`, `sonnet`, `opus`, or `fable`) and pass it to `oat project dispatch-ceiling resolve --provider claude --role implementer --preferred <model> --orchestrator-tier <current-orchestrator-tier>`. Capped policies select `min(preferred, resolved_cap)`, managed `Uncapped` selects the preferred model, and inherit/default omits `model`. Reviewer dispatch passes a `model` only when the resolver returns one. The separate effort axis is `not-applicable`.
114
118
 
115
119
  Dispatch logs use a consistent structured block so provider behavior is comparable without flattening the model and effort axes:
116
120
 
@@ -125,25 +129,43 @@ Rationale: multi-file integration with mock wiring; sonnet is the lowest suffici
125
129
  OAT Dispatch: Phase p02 implementation
126
130
  Host: Codex
127
131
  Preferred effort: high
128
- Dispatch ceiling: medium
132
+ Dispatch policy: economy
133
+ Resolved cap: medium
129
134
  Selected effort: medium
130
- Ceiling source: repo config
135
+ Policy source: repo config
131
136
  Provider default effort: high
137
+ Selection mode: capped
132
138
  Model axis: inherited
133
139
  Effort axis: selected:medium
134
140
  Dispatch target: oat-phase-implementer-medium
135
- Rationale: shared TypeScript/config substrate; high preferred due to integration risk, capped by configured ceiling.
141
+ Rationale: shared TypeScript/config substrate; high preferred due to integration risk, capped by configured policy.
136
142
 
137
143
  OAT Dispatch: Phase p03 review
138
144
  Host: Codex
139
- Dispatch ceiling: high
140
- Selected effort: high
141
- Ceiling source: project state
145
+ Dispatch policy: high
146
+ Resolved cap: xhigh
147
+ Selected effort: xhigh
148
+ Policy source: project state
142
149
  Provider default effort: medium
150
+ Selection mode: review-target
143
151
  Model axis: inherited
144
- Effort axis: selected:high
145
- Dispatch target: oat-reviewer-high
146
- Rationale: reviewer runs at the configured ceiling for deterministic quality gate behavior.
152
+ Effort axis: selected:xhigh
153
+ Dispatch target: oat-reviewer-xhigh
154
+ Rationale: reviewer runs at the configured policy cap for deterministic quality gate behavior.
155
+
156
+ OAT Dispatch: Phase p03 implementation
157
+ Host: Codex
158
+ Preferred effort: xhigh
159
+ Dispatch policy: uncapped
160
+ Resolved cap: none
161
+ Selected effort: xhigh
162
+ Policy source: project state
163
+ Provider default effort: medium
164
+ Selection mode: uncapped
165
+ Model axis: inherited
166
+ Effort axis: selected:xhigh
167
+ Dispatch target: oat-phase-implementer-xhigh
168
+ Rationale: high-risk phase; managed uncapped policy allows the preferred pinned variant.
147
169
 
148
170
  OAT Dispatch: Phase p04 implementation
149
171
  Host: Other
@@ -155,9 +177,10 @@ Rationale: host does not expose readable or pinnable dispatch controls; rational
155
177
  OAT Dispatch: p02-t10 sidecar exploration
156
178
  Host: Codex
157
179
  Preferred effort: provider-default
158
- Dispatch ceiling: xhigh
180
+ Dispatch policy: high
181
+ Resolved cap: xhigh
159
182
  Selected effort: provider-default
160
- Ceiling source: project state
183
+ Policy source: project state
161
184
  Provider default effort: xhigh
162
185
  Model axis: inherited
163
186
  Effort axis: provider-default
@@ -165,7 +188,7 @@ Dispatch target: explorer
165
188
  Rationale: read-only sidecar exploration; generic explorer payload does not pin an OAT-managed effort variant.
166
189
  ```
167
190
 
168
- Phase and review scope packets include dispatch context when the orchestrator has resolved it: `model_axis`, `effort_axis`, `dispatch_ceiling`, `ceiling_source`, `provider_default_effort`, and `dispatch_rationale`.
191
+ Phase and review scope packets include dispatch context when the orchestrator has resolved it: `model_axis`, `effort_axis`, `dispatch_policy`, `dispatch_ceiling`, `policy_source`, `ceiling_source` as a compatibility alias, `provider_default_effort`, and `dispatch_rationale`.
169
192
 
170
193
  Generic sidecars such as built-in `explorer` are not OAT-managed implementer, reviewer, or fix roles. If a sidecar payload does not pin a reliable effort/model control, log it as provider-default rather than classifying the task complexity as a selected effort. Sidecar results are advisory context; implementation and review/fix gates still follow the OAT-managed dispatch rules above.
171
194
 
@@ -183,7 +206,7 @@ For each phase in the plan (whether sequential or inside a parallel group):
183
206
  2. **Dispatch the selected implementer role** with a Phase Scope block (project path, phase id, artifact paths, commit convention, workflow mode, and dispatch context when known). In Codex, `effort_axis=selected:low|medium|high|xhigh` uses `oat-phase-implementer-low|medium|high|xhigh`. Base `oat-phase-implementer` means provider-default/unpinned fallback.
184
207
  3. **Receive the summary:** `DONE | DONE_WITH_CONCERNS | NEEDS_CONTEXT | BLOCKED`.
185
208
  - `BLOCKED` stops the run and surfaces the blocker to the user.
186
- 4. **Dispatch the selected reviewer role** with a Review Scope block (phase id, commit range, optional files-changed hint, and dispatch context). The commit range is authoritative; the file list is only orientation metadata. In Codex, pass this as a self-contained packet with `fork_context: false` and use the `oat-reviewer-<ceiling>` variant. In Claude Code, cap any selected model by the Claude ceiling and record `effort_axis=not-applicable`. If the reviewer does not conclude on the first wait, poll once more, then send a concise "return now with current findings" nudge before falling back inline for that phase.
209
+ 4. **Dispatch the selected reviewer role** with a Review Scope block (phase id, commit range, optional files-changed hint, and dispatch context). The commit range is authoritative; the file list is only orientation metadata. In Codex, pass this as a self-contained packet with `fork_context: false`; use an `oat-reviewer-<value>` variant only for capped managed policies, and use base `oat-reviewer` for managed `Uncapped` or inherit/default. In Claude Code, pass a review `model` only when the resolver returns one and always record `effort_axis=not-applicable`. If the reviewer does not conclude on the first wait, poll once more, then send a concise "return now with current findings" nudge before falling back inline for that phase.
187
210
  5. **Parse the verdict:** zero Critical + zero Important findings → `pass`; otherwise `fail`.
188
211
  6. **On fail, run the bounded fix loop** (see below).
189
212
  7. **Update artifacts** (`implementation.md`, `plan.md` review row, `state.md`) and make the mandatory bookkeeping commit.
@@ -207,8 +230,8 @@ Tier is never silently downgraded. If a Tier 1 dispatch has a transient failure,
207
230
 
208
231
  When escalation re-dispatches at a stronger control, the ladder is provider-specific:
209
232
 
210
- - **Codex:** `selected:low -> selected:medium -> selected:high -> selected:xhigh`, capped by the resolved Codex dispatch ceiling.
211
- - **Claude Code:** `selected:haiku -> selected:sonnet -> selected:opus`, capped by the resolved Claude dispatch ceiling (compiled from preset or `workflow.dispatchCeiling.providers.claude`).
233
+ - **Codex:** `selected:low -> selected:medium -> selected:high -> selected:xhigh`, capped by the resolved managed cap when one exists. Managed `Uncapped` can select the preferred value; inherit/default mode has no OAT escalation control.
234
+ - **Claude Code:** `selected:haiku -> selected:sonnet -> selected:opus -> selected:fable`, capped by the resolved managed cap when one exists. Managed `Uncapped` can select the preferred model; inherit/default mode has no OAT escalation control.
212
235
 
213
236
  Escalation re-dispatches still count against the bounded retry budget; escalation changes the dispatch control, it does not grant extra retry attempts.
214
237
 
@@ -14,7 +14,7 @@ Projects are where the workflow layer becomes concrete: lifecycle phases, `state
14
14
  - [Lifecycle](lifecycle.md) - End-to-end flow from discovery through completion.
15
15
  - [Design Modes](design-modes.md) - How full design balances collaborative, selective collaborative, and draft-and-review interaction.
16
16
  - [HiLL Checkpoints](hill-checkpoints.md) - Human-in-the-Loop Lifecycle configuration and approval behavior.
17
- - [Dispatch Ceiling](dispatch-ceiling.md) - Provider-neutral ceiling model and provider-specific enforcement.
17
+ - [Dispatch Policy](dispatch-ceiling.md) - Managed capped tiers, managed Uncapped, Inherit Host Defaults, and provider-specific enforcement.
18
18
  - [Project Artifacts](artifacts.md) - What lives in `state.md`, `discovery.md`, `plan.md`, `implementation.md`, and related files.
19
19
  - [Implementation Execution](implementation-execution.md) - Phase dispatch, runtime selection, review/fix loop, and dry-run behavior.
20
20
  - [Project Splitting](splitting.md) - How broad discoveries or brainstorms become coordination parents and child projects.
@@ -47,7 +47,7 @@ This sub-section is the deep technical surface for how tracked OAT projects exec
47
47
  - [Lifecycle](lifecycle.md) - End-to-end flow from discovery through completion.
48
48
  - [Design Modes](design-modes.md) - How full design balances collaborative, selective collaborative, and draft-and-review interaction.
49
49
  - [HiLL Checkpoints](hill-checkpoints.md) - Human-in-the-Loop Lifecycle configuration and approval behavior.
50
- - [Dispatch Ceiling](dispatch-ceiling.md) - Provider-neutral ceiling model: presets, the compile/resolve flow, and how enforcement differs for Codex, Claude, and unsupported providers.
50
+ - [Dispatch Policy](dispatch-ceiling.md) - Managed capped tiers, managed Uncapped, Inherit Host Defaults, legacy dispatch-ceiling compatibility, and provider-specific enforcement.
51
51
  - [Artifacts](artifacts.md) - What lives in `state.md`, `discovery.md`, `plan.md`, `implementation.md`, and related files.
52
52
  - [Project Splitting](splitting.md) - How broad discoveries or brainstorms become coordination parents and child projects.
53
53
  - [State Machine](state-machine.md) - Lifecycle and review status transitions across a project.
@@ -136,7 +136,17 @@ flowchart LR
136
136
 
137
137
  During the Design step, `oat-project-design` asks how to work through the document unless a mode was selected by argument, environment, or `workflow.designMode`. The three full-design choices are collaborative, selective collaborative, and draft-and-review.
138
138
 
139
- Before a plan is marked ready for implementation, planning resolves the current provider's dispatch ceiling from `workflow.dispatchCeiling.providers.<provider>` (compiled from a preset or set directly) or project `state.md` frontmatter. If no ceiling is configured and the session is interactive, planning asks once and stores the answer as `oat_dispatch_ceiling`; non-interactive planning leaves it unresolved so implementation preflight can fail before work starts with setup instructions.
139
+ Before a plan is marked ready for implementation, planning resolves the current
140
+ provider's dispatch policy from `workflow.dispatchPolicy.mode` and
141
+ `workflow.dispatchPolicy.policy`, or from project `state.md` frontmatter. The
142
+ legacy `workflow.dispatchCeiling.providers.<provider>` config and
143
+ `oat_dispatch_ceiling` frontmatter remain compatibility inputs for capped
144
+ managed policies. If no policy is configured and the session is interactive,
145
+ planning asks once and stores the answer as `oat_dispatch_policy`;
146
+ non-interactive planning leaves it unresolved so implementation preflight can
147
+ fail before work starts with setup instructions. `Uncapped` is explicit managed
148
+ selection with no maximum cap; `Inherit Host Defaults` is separate and means OAT
149
+ does not select model or effort controls.
140
150
 
141
151
  ### Quick lane
142
152
 
@@ -152,7 +162,12 @@ flowchart LR
152
162
 
153
163
  Quick lane lightweight design intentionally keeps a smaller collaborative/draft choice. Selective collaborative becomes available only after promotion into the full spec-driven design lane.
154
164
 
155
- Quick-start follows the same dispatch ceiling rule at the plan boundary: capture it when interactive, persist it to project state, and avoid any mid-implementation ceiling prompt.
165
+ Quick-start follows the same dispatch policy rule at the plan boundary: capture
166
+ the policy when interactive, persist `oat_dispatch_policy` to project state, and
167
+ avoid any mid-implementation policy prompt. Legacy dispatch-ceiling state is
168
+ still read as compatibility capped-policy input, but new quick-start selections
169
+ should use the dispatch-policy names, including explicit `Uncapped` and
170
+ `Inherit Host Defaults`.
156
171
 
157
172
  ### Import lane
158
173
 
@@ -1,6 +1,6 @@
1
1
  {
2
- "cli": "0.1.42",
3
- "docs-config": "0.1.42",
4
- "docs-theme": "0.1.42",
5
- "docs-transforms": "0.1.42"
2
+ "cli": "0.1.43",
3
+ "docs-config": "0.1.43",
4
+ "docs-theme": "0.1.43",
5
+ "docs-transforms": "0.1.43"
6
6
  }