@uluops/cli 0.18.1 → 0.18.2
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/CHANGELOG.md +27 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All notable changes to `@uluops/cli` will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
|
|
7
|
+
## [0.18.2] - 2026-06-15
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Bump `@uluops/core` to `0.21.1` (agent-execution resilience hardening). Two behaviors surface through the CLI:
|
|
12
|
+
- **Global LLM concurrency cap.** `exec` runs now bound total in-flight LLM calls across all fan-out (workflow phases, parallel steps, inline pipeline agents) via a shared limiter in core. Tune with the `ULUOPS_MAX_CONCURRENCY` env var (default 8). This is separate from `exec agent -c/--concurrency`, which caps how many agent definitions the CLI runs in parallel, and from a workflow's per-level `max_parallel`.
|
|
13
|
+
- **maxSteps exhaustion is now explicit.** When an agent hits the `--max-steps` ceiling while still calling tools and returns no output, core throws a typed `MaxStepsExhaustedError` instead of emitting a silent low-confidence failure. The run surfaces a clear error (raise `--max-steps` or narrow the target) rather than a result indistinguishable from a crash.
|
|
14
|
+
|
|
15
|
+
## [0.18.1] - 2026-06-15
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Bump `@uluops/core` to `0.21.0` and `@uluops/registry-sdk` to `0.32.1` — capability-gated structured-output-with-tools (Option C) and non-destructive extraction-confidence handling (Option B). A correctly-parsed decision is no longer overwritten by a low-confidence extraction method.
|
|
20
|
+
|
|
7
21
|
## [0.18.0] - 2026-06-14
|
|
8
22
|
|
|
9
23
|
### Added
|
|
@@ -14,6 +28,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
14
28
|
|
|
15
29
|
- Bump `@uluops/core` to `0.20.0` (frozen-artifact execution + caller-pinned verification).
|
|
16
30
|
|
|
31
|
+
## [0.17.1] - 2026-06-11
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
|
|
35
|
+
- **`exec agent --report` fails closed for multiple agents.** `--report` writes a single human-readable report and is single-agent only; passing multiple agent names with `--report` now errors instead of silently reporting on just one (captive-user run #12, PRA-FRA/H).
|
|
36
|
+
- Pin `@uluops/core` to `0.19.0` (per-model context-budget reconciliation).
|
|
37
|
+
|
|
38
|
+
## [0.17.0] - 2026-06-09
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- **Honest error surfacing and flag behavior** (captive-user run #11). Surface underlying error messages instead of opaque failures, document the API base URL and show which credential source is in use, and make `--report` / `--version` / `--timeout` behave as documented.
|
|
43
|
+
|
|
17
44
|
## [0.16.0] - 2026-06-09
|
|
18
45
|
|
|
19
46
|
> Minor bump (breaking-for-scripts): `ulu exec` runs that previously tracked
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uluops/cli",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.2",
|
|
4
4
|
"description": "Unified CLI for UluOps - validation tracking and registry management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"license": "MIT",
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@uluops/core": "0.21.
|
|
43
|
+
"@uluops/core": "0.21.1",
|
|
44
44
|
"@uluops/ops-sdk": "3.2.1",
|
|
45
45
|
"@uluops/registry-sdk": "0.32.1",
|
|
46
46
|
"commander": "13.1.0",
|