@lmctl-ai/lmctl 0.1.84 → 0.1.86

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 CHANGED
@@ -2,6 +2,29 @@
2
2
 
3
3
  All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
4
4
 
5
+ ## 0.1.86 — 2026-07-07
6
+
7
+ - **New `lmctl wait` — the wake primitive for the meta-lead orchestration loop.**
8
+ Dispatch N tracked background jobs (`lmctl chat --detach`), then `lmctl wait`
9
+ blocks (polling `delegation_job`) and returns the moment the first snapshot job
10
+ finishes — reporting which completed and which of that snapshot are still in
11
+ flight. Defaults to the caller's own dispatched jobs (`--all` widens, a
12
+ `<teamfile>` positional scopes); returns `idle` when nothing is in flight (so
13
+ the loop knows to pull fresh work from its queue); no default timeout
14
+ (`--timeout` optional); polls every 3s (`--interval`). It burns no tokens while
15
+ blocked and works across all providers. Replaces the fragile "reserve one
16
+ blocking job as the wake" (N-1/1) pattern.
17
+
18
+ ## 0.1.85 — 2026-07-07
19
+
20
+ - **lmplayer: a delegation job that completes with empty output is no longer
21
+ silently marked `done`.** A detached `provider=lmplayer` job whose reply is
22
+ empty is now corroborated against the session store — if the session is missing
23
+ or has zero persisted messages, the job is terminalized as `error`
24
+ (`empty_lmplayer_result`) instead of a silent success, so the lost work is
25
+ visible instead of masquerading as done. Non-empty replies and non-lmplayer
26
+ jobs are unaffected.
27
+
5
28
  ## 0.1.84 — 2026-07-07
6
29
 
7
30
  - **lmplayer: `tail`/`health`/`ls` now find sessions on a fresh install.**