@open-agent-toolkit/cli 0.1.36 → 0.1.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/docs/cli-utilities/config-and-local-state.md +4 -1
- package/assets/docs/cli-utilities/configuration.md +1 -1
- package/assets/docs/cli-utilities/workflow-gates.md +23 -6
- package/assets/docs/contributing/skills.md +7 -3
- package/assets/public-package-versions.json +4 -4
- package/assets/skills/oat-project-implement/SKILL.md +2 -2
- package/assets/skills/oat-project-import-plan/SKILL.md +2 -2
- package/assets/skills/oat-project-plan/SKILL.md +2 -2
- package/assets/skills/oat-project-quick-start/SKILL.md +2 -2
- package/dist/commands/gate/index.d.ts.map +1 -1
- package/dist/commands/gate/index.js +10 -4
- package/package.json +2 -2
|
@@ -119,7 +119,10 @@ Available commands:
|
|
|
119
119
|
Use `oat gate review` for OAT review gates. It keeps the normal stateful
|
|
120
120
|
review-provider workflow: the review artifact, Reviews row update, and review
|
|
121
121
|
bookkeeping commits are expected, and the produced review must be received with
|
|
122
|
-
`oat-project-review-receive` before the host treats it as dispositioned.
|
|
122
|
+
`oat-project-review-receive` before the host treats it as dispositioned. Keep
|
|
123
|
+
reusable lifecycle gate commands target-neutral by omitting `--target <id>`; use
|
|
124
|
+
explicit target pins only for manual dispatch, debugging, or deliberately local
|
|
125
|
+
overrides.
|
|
123
126
|
|
|
124
127
|
Use `oat gate cross-provider-exec` for generic cross-runtime execution. It
|
|
125
128
|
avoids the current runtime by default, chooses a fresh Codex, Claude, or Cursor
|
|
@@ -270,7 +270,7 @@ Workflow preference keys live under the `workflow.*` namespace:
|
|
|
270
270
|
- `workflow.dispatchCeiling.preset` — `balanced`, `maximum`, or `cost-conscious`. Convenience preset that compiles to per-provider values at write time. Setting this key is the recommended way to configure the ceiling.
|
|
271
271
|
- `workflow.dispatchCeiling.providers.codex` — `low`, `medium`, `high`, or `xhigh`. Concrete Codex ceiling. Set automatically when a preset is selected; also settable directly for Advanced (no preset) configurations. Provider default effort is informational for base/unpinned roles and is not treated as this ceiling.
|
|
272
272
|
- `workflow.dispatchCeiling.providers.claude` — `haiku`, `sonnet`, or `opus`. Concrete Claude ceiling. Set automatically when a preset is selected; also settable directly for Advanced configurations. Claude has no separate per-dispatch effort axis, so the effort axis remains `not-applicable`.
|
|
273
|
-
- `workflow.gates.skills` / `workflow.gates.execTargets` — structured per-skill final gate commands and exec-target registry. Use `oat gate set`, `oat gate target set`, and `oat gate cross-provider-exec`; do not use `oat config set` for these objects.
|
|
273
|
+
- `workflow.gates.skills` / `workflow.gates.execTargets` — structured per-skill final gate commands and exec-target registry. Use `oat gate set`, `oat gate target set`, `oat gate review`, and `oat gate cross-provider-exec`; do not use `oat config set` for these objects.
|
|
274
274
|
|
|
275
275
|
### Auto artifact-review preferences
|
|
276
276
|
|
|
@@ -112,7 +112,8 @@ JSON argv is intentional: provider commands often contain flags such as `-p` or
|
|
|
112
112
|
Use these examples only in trusted environments where the provider process may
|
|
113
113
|
read files, run tools, and write review bookkeeping without an interactive
|
|
114
114
|
approval prompt. They are user-level target configuration, not built-in OAT
|
|
115
|
-
defaults.
|
|
115
|
+
defaults. Defining a trusted target makes it available to the dispatcher; it
|
|
116
|
+
does not mean shared lifecycle gate commands should pin that target.
|
|
116
117
|
|
|
117
118
|
Claude's default permission mode can block on
|
|
118
119
|
`Skill(oat-project-review-provide)`, `oat`, `pnpm`, and shell or tool calls. A
|
|
@@ -161,7 +162,7 @@ Set or clear a skill gate:
|
|
|
161
162
|
|
|
162
163
|
```bash
|
|
163
164
|
oat gate set oat-project-implement \
|
|
164
|
-
--command 'oat gate review --
|
|
165
|
+
--command 'oat gate review --review-type code --review-scope final "Use oat-project-review-provide code final to review the current project"' \
|
|
165
166
|
--description "Run final review in another runtime" \
|
|
166
167
|
--on-failure block \
|
|
167
168
|
--max-attempts 2 \
|
|
@@ -170,6 +171,11 @@ oat gate set oat-project-implement \
|
|
|
170
171
|
oat gate unset oat-project-implement --layer user
|
|
171
172
|
```
|
|
172
173
|
|
|
174
|
+
Lifecycle gate commands should normally omit `--target <id>`. Leaving the
|
|
175
|
+
target unset lets the dispatcher avoid the current runtime and choose the
|
|
176
|
+
highest-priority available non-host target. Pin a target only for manual
|
|
177
|
+
dispatch, debugging, or a deliberate local/user-specific override.
|
|
178
|
+
|
|
173
179
|
Set or clear an exec target:
|
|
174
180
|
|
|
175
181
|
```bash
|
|
@@ -186,7 +192,7 @@ oat gate target unset codex-high --layer user
|
|
|
186
192
|
Dispatch a review through the target registry:
|
|
187
193
|
|
|
188
194
|
```bash
|
|
189
|
-
oat gate review
|
|
195
|
+
oat gate review \
|
|
190
196
|
--review-type code \
|
|
191
197
|
--review-scope final \
|
|
192
198
|
"Use oat-project-review-provide code final to review the current project"
|
|
@@ -195,6 +201,16 @@ oat gate review --target codex-5.5-xhigh \
|
|
|
195
201
|
Leaving `--target` unset lets target priority choose the highest-priority
|
|
196
202
|
available non-host runtime.
|
|
197
203
|
|
|
204
|
+
For manual or debug dispatch, use `--target <id>` to pin one target and skip
|
|
205
|
+
detection/avoidance:
|
|
206
|
+
|
|
207
|
+
```bash
|
|
208
|
+
oat gate review --target codex-5.5-xhigh \
|
|
209
|
+
--review-type code \
|
|
210
|
+
--review-scope final \
|
|
211
|
+
"Use oat-project-review-provide code final to review the current project"
|
|
212
|
+
```
|
|
213
|
+
|
|
198
214
|
Dispatch a generic prompt through the target registry:
|
|
199
215
|
|
|
200
216
|
```bash
|
|
@@ -242,6 +258,7 @@ OAT does not try another target after a failed review.
|
|
|
242
258
|
|
|
243
259
|
V1 gates avoid the current runtime, not the current model or effort setting.
|
|
244
260
|
Same-runtime but different-target dispatch, such as using Cursor again with a
|
|
245
|
-
different model slug, is future work. Until that exists,
|
|
246
|
-
|
|
247
|
-
|
|
261
|
+
different model slug, is future work. Until that exists, reusable lifecycle
|
|
262
|
+
gates should rely on default `same-runtime` avoidance for cross-runtime review;
|
|
263
|
+
manual and local overrides can pin an explicit reviewer target with
|
|
264
|
+
`--target <id>`.
|
|
@@ -95,9 +95,13 @@ The Gate Execution step should:
|
|
|
95
95
|
- `prompt` - surface the failure and ask the user.
|
|
96
96
|
- `warn` - record the failure and continue.
|
|
97
97
|
|
|
98
|
-
For
|
|
99
|
-
|
|
100
|
-
|
|
98
|
+
For OAT review gates, prefer putting `oat gate review "<prompt>"` in the
|
|
99
|
+
configured gate command rather than hard-coding a provider CLI directly in the
|
|
100
|
+
skill. Use `oat gate cross-provider-exec "<prompt>"` for generic cross-runtime
|
|
101
|
+
commands that should report only the child process status, not review findings.
|
|
102
|
+
Reusable lifecycle gate commands should normally omit `--target <id>` so the
|
|
103
|
+
dispatcher can avoid the current runtime; reserve explicit targets for
|
|
104
|
+
manual/debug commands or deliberate local/user-specific overrides. See
|
|
101
105
|
[Workflow Gates](../cli-utilities/workflow-gates.md) for the config and command
|
|
102
106
|
surface.
|
|
103
107
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: oat-project-implement
|
|
3
|
-
version: 2.0.
|
|
3
|
+
version: 2.0.23
|
|
4
4
|
description: Use when plan.md is ready for execution. Dispatches phase-level subagents with bounded fix loops; supports plan-declared parallel phase groups with worktree-isolated execution and ordered fan-in.
|
|
5
5
|
oat_gateable: true
|
|
6
6
|
argument-hint: '[--retry-limit <N>] [--dry-run]'
|
|
@@ -1443,7 +1443,7 @@ Before reporting this skill as complete, run the configured gate as the final st
|
|
|
1443
1443
|
- `prompt`: surface the gate failure and ask the human how to proceed.
|
|
1444
1444
|
- `warn`: record the gate failure and continue.
|
|
1445
1445
|
|
|
1446
|
-
5. Runtime selection note (V1): the step runs the gate `command` as-is and reads no env var. By default, `oat gate cross-provider-exec`
|
|
1446
|
+
5. Runtime selection note (V1): the step runs the gate `command` as-is and reads no OAT runtime env var. By default, `oat gate review` and `oat gate cross-provider-exec` resolve the current host from built-in `hostDetectionCommand`s and avoid the same runtime when no exact target is supplied. Reusable lifecycle skill-gate commands should normally omit `--target <id>` so independent review stays provider-neutral. Use explicit targets only for manual/debug commands or deliberate local/user-specific overrides; do not hardcode provider/model targets in bundled skill guidance or shared lifecycle gate examples.
|
|
1447
1447
|
|
|
1448
1448
|
## Success Criteria
|
|
1449
1449
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: oat-project-import-plan
|
|
3
|
-
version: 1.4.
|
|
3
|
+
version: 1.4.2
|
|
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
|
|
@@ -295,7 +295,7 @@ Before reporting this skill as complete, run the configured gate as the final st
|
|
|
295
295
|
- `prompt`: surface the gate failure and ask the human how to proceed.
|
|
296
296
|
- `warn`: record the gate failure and continue.
|
|
297
297
|
|
|
298
|
-
5. Runtime selection note (V1): the step runs the gate `command` as-is and reads no env var. By default, `oat gate cross-provider-exec`
|
|
298
|
+
5. Runtime selection note (V1): the step runs the gate `command` as-is and reads no OAT runtime env var. By default, `oat gate review` and `oat gate cross-provider-exec` resolve the current host from built-in `hostDetectionCommand`s and avoid the same runtime when no exact target is supplied. Reusable lifecycle skill-gate commands should normally omit `--target <id>` so independent review stays provider-neutral. Use explicit targets only for manual/debug commands or deliberate local/user-specific overrides; do not hardcode provider/model targets in bundled skill guidance or shared lifecycle gate examples.
|
|
299
299
|
|
|
300
300
|
### Step 7: Output Next Action
|
|
301
301
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: oat-project-plan
|
|
3
|
-
version: 1.3.
|
|
3
|
+
version: 1.3.8
|
|
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
|
|
@@ -525,7 +525,7 @@ Before reporting this skill as complete, run the configured gate as the final st
|
|
|
525
525
|
- `prompt`: surface the gate failure and ask the human how to proceed.
|
|
526
526
|
- `warn`: record the gate failure and continue.
|
|
527
527
|
|
|
528
|
-
5. Runtime selection note (V1): the step runs the gate `command` as-is and reads no env var. By default, `oat gate cross-provider-exec`
|
|
528
|
+
5. Runtime selection note (V1): the step runs the gate `command` as-is and reads no OAT runtime env var. By default, `oat gate review` and `oat gate cross-provider-exec` resolve the current host from built-in `hostDetectionCommand`s and avoid the same runtime when no exact target is supplied. Reusable lifecycle skill-gate commands should normally omit `--target <id>` so independent review stays provider-neutral. Use explicit targets only for manual/debug commands or deliberate local/user-specific overrides; do not hardcode provider/model targets in bundled skill guidance or shared lifecycle gate examples.
|
|
529
529
|
|
|
530
530
|
## Success Criteria
|
|
531
531
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: oat-project-quick-start
|
|
3
|
-
version: 2.1.
|
|
3
|
+
version: 2.1.8
|
|
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
|
oat_gateable: true
|
|
@@ -615,7 +615,7 @@ Before reporting this skill as complete, run the configured gate as the final st
|
|
|
615
615
|
- `prompt`: surface the gate failure and ask the human how to proceed.
|
|
616
616
|
- `warn`: record the gate failure and continue.
|
|
617
617
|
|
|
618
|
-
5. Runtime selection note (V1): the step runs the gate `command` as-is and reads no env var. By default, `oat gate cross-provider-exec`
|
|
618
|
+
5. Runtime selection note (V1): the step runs the gate `command` as-is and reads no OAT runtime env var. By default, `oat gate review` and `oat gate cross-provider-exec` resolve the current host from built-in `hostDetectionCommand`s and avoid the same runtime when no exact target is supplied. Reusable lifecycle skill-gate commands should normally omit `--target <id>` so independent review stays provider-neutral. Use explicit targets only for manual/debug commands or deliberate local/user-specific overrides; do not hardcode provider/model targets in bundled skill guidance or shared lifecycle gate examples.
|
|
619
619
|
|
|
620
620
|
### Step 7: Output Next Action
|
|
621
621
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/gate/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAEL,KAAK,cAAc,EACnB,KAAK,aAAa,EACnB,MAAM,sBAAsB,CAAC;AAO9B,OAAO,EAQL,KAAK,UAAU,EAIf,KAAK,SAAS,EACd,KAAK,cAAc,EACnB,KAAK,UAAU,EAEhB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAIL,KAAK,cAAc,EACpB,MAAM,iBAAiB,CAAC;AAGzB,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAOpC,UAAU,uBAAuB;IAC/B,mBAAmB,EAAE,CAAC,OAAO,EAAE,aAAa,KAAK,cAAc,CAAC;IAChE,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,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,CACV,OAAO,EAAE,MAAM,EACf,IAAI,EAAE,MAAM,EAAE,EACd,OAAO,EAAE,iBAAiB,KACvB,OAAO,CAAC,gBAAgB,CAAC,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC;CAC/B;AA0CD,UAAU,iBAAiB;IACzB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC;IACvB,OAAO,EAAE,gBAAgB,GAAG,cAAc,GAAG,SAAS,CAAC;IACvD,KAAK,EAAE,QAAQ,GAAG,SAAS,CAAC;CAC7B;AAED,UAAU,gBAAgB;IACxB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,KAAK,kBAAkB,GAAG,cAAc,GAAG,MAAM,CAAC;AAMlD,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,UAAU,CAAC;CACpB;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/gate/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAEL,KAAK,cAAc,EACnB,KAAK,aAAa,EACnB,MAAM,sBAAsB,CAAC;AAO9B,OAAO,EAQL,KAAK,UAAU,EAIf,KAAK,SAAS,EACd,KAAK,cAAc,EACnB,KAAK,UAAU,EAEhB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAIL,KAAK,cAAc,EACpB,MAAM,iBAAiB,CAAC;AAGzB,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAOpC,UAAU,uBAAuB;IAC/B,mBAAmB,EAAE,CAAC,OAAO,EAAE,aAAa,KAAK,cAAc,CAAC;IAChE,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,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,CACV,OAAO,EAAE,MAAM,EACf,IAAI,EAAE,MAAM,EAAE,EACd,OAAO,EAAE,iBAAiB,KACvB,OAAO,CAAC,gBAAgB,CAAC,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC;CAC/B;AA0CD,UAAU,iBAAiB;IACzB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC;IACvB,OAAO,EAAE,gBAAgB,GAAG,cAAc,GAAG,SAAS,CAAC;IACvD,KAAK,EAAE,QAAQ,GAAG,SAAS,CAAC;CAC7B;AAED,UAAU,gBAAgB;IACxB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,KAAK,kBAAkB,GAAG,cAAc,GAAG,MAAM,CAAC;AAMlD,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,UAAU,CAAC;CACpB;AAyZD,wBAAgB,gBAAgB,CAC9B,QAAQ,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,EAC9C,cAAc,EAAE,MAAM,EACtB,KAAK,EAAE,kBAAkB,GACxB,kBAAkB,GAAG,IAAI,CAE3B;AA+wBD,wBAAgB,iBAAiB,CAC/B,SAAS,GAAE,OAAO,CAAC,uBAAuB,CAAM,GAC/C,OAAO,CAwKT"}
|
|
@@ -44,6 +44,12 @@ const REVIEW_GATE_CONTEXT_NOTE = 'This review is gate-originated. If you run `oa
|
|
|
44
44
|
function reviewGateProjectContext(projectPath) {
|
|
45
45
|
return `Resolved OAT project path: ${projectPath}. Run the review for this project path.`;
|
|
46
46
|
}
|
|
47
|
+
function assembleReviewGatePrompt(segments) {
|
|
48
|
+
return segments
|
|
49
|
+
.map((segment) => segment.trim())
|
|
50
|
+
.filter((segment) => segment.length > 0)
|
|
51
|
+
.join('\n\n');
|
|
52
|
+
}
|
|
47
53
|
async function runChildProcess(command, args, options) {
|
|
48
54
|
return new Promise((resolve, reject) => {
|
|
49
55
|
const child = spawn(command, args, {
|
|
@@ -697,7 +703,7 @@ async function runReviewGate(prompt, options, context, dependencies) {
|
|
|
697
703
|
repoRoot,
|
|
698
704
|
projectPath,
|
|
699
705
|
});
|
|
700
|
-
const reviewPrompt = [
|
|
706
|
+
const reviewPrompt = assembleReviewGatePrompt([
|
|
701
707
|
REVIEW_GATE_CONTEXT_NOTE,
|
|
702
708
|
reviewGateProjectContext(projectPath),
|
|
703
709
|
...(options.reviewType?.trim()
|
|
@@ -706,9 +712,9 @@ async function runReviewGate(prompt, options, context, dependencies) {
|
|
|
706
712
|
...(options.reviewScope?.trim()
|
|
707
713
|
? [`Review scope: ${options.reviewScope.trim()}.`]
|
|
708
714
|
: []),
|
|
709
|
-
|
|
710
|
-
];
|
|
711
|
-
const childExitCode = await executeTarget(selected, reviewPrompt, context, dependencies);
|
|
715
|
+
prompt.join(' '),
|
|
716
|
+
]);
|
|
717
|
+
const childExitCode = await executeTarget(selected, [reviewPrompt], context, dependencies);
|
|
712
718
|
if (childExitCode !== 0) {
|
|
713
719
|
process.exitCode = childExitCode;
|
|
714
720
|
return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-agent-toolkit/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.37",
|
|
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",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"ora": "^9.0.0",
|
|
35
35
|
"yaml": "2.8.2",
|
|
36
36
|
"zod": "^3.25.76",
|
|
37
|
-
"@open-agent-toolkit/control-plane": "0.1.
|
|
37
|
+
"@open-agent-toolkit/control-plane": "0.1.37"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "^22.10.0",
|