@lmctl-ai/lmctl 0.1.85 → 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 +13 -0
- package/dist/cli/index.js +542 -522
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
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
|
+
|
|
5
18
|
## 0.1.85 — 2026-07-07
|
|
6
19
|
|
|
7
20
|
- **lmplayer: a delegation job that completes with empty output is no longer
|