@lmctl-ai/lmctl 0.1.92 → 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 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.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
+
16
+ ## 0.1.93 — 2026-07-08
17
+
18
+ - **Replaced `--from` with `I_am=<teamfile:alias>`.** Agent-origin commands now
19
+ use explicit self-identification for `chat`, `send`, `recv`, `wait`, `exec`,
20
+ and `loop`; the old option is rejected with a hint. `LMCTL_SELF_SESSIONID`
21
+ is the primary derived identity source, `I_am=` is the explicit fallback when
22
+ no session marker is available, and a conflicting `I_am=` is rejected so a
23
+ known session cannot impersonate another member.
24
+
5
25
  ## 0.1.92 — 2026-07-08
6
26
 
7
27
  - **Retired `_SKILL_` downloads.** Legacy teamfile `_SKILL_` lines are
@@ -41,7 +61,7 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
41
61
 
42
62
  - **Removed `lmctl wait --all`.** System-wide scope is a foot-gun for a paced
43
63
  wake (field-confirmed): unrelated completions can wake the caller before its
44
- own next job finishes. Scope `wait` with default-self, `--from`, or
64
+ own next job finishes. Scope `wait` with default-self, `I_am=`, or
45
65
  `[teamfile]`.
46
66
 
47
67
  ## 0.1.87 — 2026-07-07
@@ -51,7 +71,7 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
51
71
  a start row and a finish row; `lmctl wait` blocks on those rows and returns the
52
72
  instant the first one in scope finishes (reporting which completed and which
53
73
  are still running). `lmctl exec -- <command>` runs any shell command as a
54
- tracked invocation, and a backgrounded `lmctl chat … --from "<teamfile>:Lead"`
74
+ tracked invocation, and a backgrounded `lmctl chat … I_am="<teamfile>:Lead"`
55
75
  is tracked the same way — so `cmd & lmctl wait` is the wake for chats and
56
76
  arbitrary commands alike. This replaces the fragile "reserve one blocking job
57
77
  as the wake" (N−1/1) pattern; all N launches go to the background and `wait` is
@@ -67,7 +87,7 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
67
87
  phantom `running` row whose process died without writing a finish is reclaimed
68
88
  as `error` (dead/stale holder detection) instead of hanging `wait` forever; an
69
89
  appearance-grace poll covers the `cmd & lmctl wait` insert-lag race. Scopes:
70
- default (caller, via `LMCTL_SELF_SESSIONID`), `--from`, `<teamfile>`; exit
90
+ default (caller, via `LMCTL_SELF_SESSIONID`), `I_am=`, `<teamfile>`; exit
71
91
  `0` completed/idle, `1` timeout
72
92
  (8h backstop), `2` usage. A single `idle` return means "nothing running right
73
93
  now", not "done" — loop `wait`.
@@ -112,7 +132,7 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
112
132
 
113
133
  - **`lmctl terminal` takes a DB lock** (host + pid + heartbeat) so a second chat
114
134
  to a member held live in a terminal is rejected instead of racing; a stale/dead
115
- or remote lock is reclaimed safely, and `--force` overrides.
135
+ or remote lock is reclaimed safely.
116
136
  - **`--detach` is hidden from the CLI surface.** It stays functional for AI-team
117
137
  chat but is the codex/gemini-only fallback; other providers use their native
118
138
  tracked-background path.
package/README.md CHANGED
@@ -65,7 +65,7 @@ Lintable teamfile templates for research, writing, and review teams ship in the
65
65
  [documentation](https://lmctl.com/lmctl) to define your first team.
66
66
 
67
67
  - `lmctl send <teamfile> <alias> "message"` messages a Lead; enqueues if it is up, falls back to chat if down.
68
- - `lmctl recv [--from <teamfile:alias>]` drains the calling Lead's mailbox consume-on-read.
68
+ - `lmctl recv [I_am=<teamfile:alias>]` drains the calling Lead's mailbox consume-on-read.
69
69
 
70
70
  ## Model selection
71
71