@lmctl-ai/lmctl 0.1.93 → 0.1.94
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 +12 -1
- package/dist/cli/index.js +178 -181
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
4
4
|
|
|
5
|
+
## 0.1.94 — 2026-07-08
|
|
6
|
+
|
|
7
|
+
- **Debug diagnostics now write only to the debug log file.** YOLO spawn
|
|
8
|
+
diagnostics and CLI startup breadcrumbs append to `~/.lmctl/debug-*.log`
|
|
9
|
+
instead of printing `[debug]` lines to stdout/stderr.
|
|
10
|
+
|
|
11
|
+
- **Removed `lmctl chat --force`.** The flag defeated terminal-lock and
|
|
12
|
+
in-flight safeguards by forcing a chat into a session already held by a live
|
|
13
|
+
process. Dead/stale holders now auto-reclaim without an option; live holders
|
|
14
|
+
should be reached with liveness-aware `lmctl send`.
|
|
15
|
+
|
|
5
16
|
## 0.1.93 — 2026-07-08
|
|
6
17
|
|
|
7
18
|
- **Replaced `--from` with `I_am=<teamfile:alias>`.** Agent-origin commands now
|
|
@@ -121,7 +132,7 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
|
121
132
|
|
|
122
133
|
- **`lmctl terminal` takes a DB lock** (host + pid + heartbeat) so a second chat
|
|
123
134
|
to a member held live in a terminal is rejected instead of racing; a stale/dead
|
|
124
|
-
or remote lock is reclaimed safely
|
|
135
|
+
or remote lock is reclaimed safely.
|
|
125
136
|
- **`--detach` is hidden from the CLI surface.** It stays functional for AI-team
|
|
126
137
|
chat but is the codex/gemini-only fallback; other providers use their native
|
|
127
138
|
tracked-background path.
|