@lmctl-ai/lmctl 0.1.89 → 0.1.91
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 +20 -0
- package/README.md +1 -1
- package/dist/cli/index.js +534 -524
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
4
4
|
|
|
5
|
+
## 0.1.91 — 2026-07-08
|
|
6
|
+
|
|
7
|
+
- **Removed `lmctl wait --id`.** `wait` is an interactive first-return primitive over the caller's queue (id-handshake retired).
|
|
8
|
+
|
|
9
|
+
## 0.1.90 — 2026-07-08
|
|
10
|
+
|
|
11
|
+
- **`lmctl wait` now self-heals phantom running rows globally.** Each wait starts
|
|
12
|
+
with a guarded reclaim sweep across all `tracked_invocation` rows, so killed
|
|
13
|
+
same-host holders and stale remote/null holders are marked `error` instead of
|
|
14
|
+
accumulating forever and wedging later waits.
|
|
15
|
+
- **Long chat turns now heartbeat their tracked invocation.** `lmctl chat`
|
|
16
|
+
refreshes `last_heartbeat_at` while the provider turn is running, matching
|
|
17
|
+
`lmctl exec` and preventing live long turns from looking stale.
|
|
18
|
+
- **Appearance-grace diagnostics tightened.** `LMCTL_WAIT_APPEARANCE_GRACE_MS` is
|
|
19
|
+
clamped to a sane range (default 3s, max 30s), and debug logs now include a
|
|
20
|
+
`wait_start` breadcrumb with scope, high-water id, timing, and DB path.
|
|
21
|
+
- **`lmctl send` is liveness-aware.** Sending to an up same-host Lead enqueues
|
|
22
|
+
mailbox mail; sending to a down/no-carrier Lead falls back to synchronous
|
|
23
|
+
chat delivery so the message is not stranded; cross-host carriers enqueue.
|
|
24
|
+
|
|
5
25
|
## 0.1.89 — 2026-07-08
|
|
6
26
|
|
|
7
27
|
- **`agent_mailbox`: async Lead-to-Lead messaging.** New `lmctl send` drops a
|
package/README.md
CHANGED
|
@@ -64,7 +64,7 @@ Lintable teamfile templates for research, writing, and review teams ship in the
|
|
|
64
64
|
`db`. Run `lmctl <command> --help` for details on each, and see the
|
|
65
65
|
[documentation](https://lmctl.com/lmctl) to define your first team.
|
|
66
66
|
|
|
67
|
-
- `lmctl send <teamfile> <alias> "message"` enqueues
|
|
67
|
+
- `lmctl send <teamfile> <alias> "message"` messages a Lead; enqueues if it is up, falls back to chat if down.
|
|
68
68
|
- `lmctl recv [--from <teamfile:alias>]` drains the calling Lead's mailbox consume-on-read.
|
|
69
69
|
|
|
70
70
|
## Model selection
|