@lmctl-ai/lmctl 0.1.92 → 0.1.93
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 -3
- package/README.md +1 -1
- package/dist/cli/index.js +543 -539
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
4
4
|
|
|
5
|
+
## 0.1.93 — 2026-07-08
|
|
6
|
+
|
|
7
|
+
- **Replaced `--from` with `I_am=<teamfile:alias>`.** Agent-origin commands now
|
|
8
|
+
use explicit self-identification for `chat`, `send`, `recv`, `wait`, `exec`,
|
|
9
|
+
and `loop`; the old option is rejected with a hint. `LMCTL_SELF_SESSIONID`
|
|
10
|
+
is the primary derived identity source, `I_am=` is the explicit fallback when
|
|
11
|
+
no session marker is available, and a conflicting `I_am=` is rejected so a
|
|
12
|
+
known session cannot impersonate another member.
|
|
13
|
+
|
|
5
14
|
## 0.1.92 — 2026-07-08
|
|
6
15
|
|
|
7
16
|
- **Retired `_SKILL_` downloads.** Legacy teamfile `_SKILL_` lines are
|
|
@@ -41,7 +50,7 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
|
41
50
|
|
|
42
51
|
- **Removed `lmctl wait --all`.** System-wide scope is a foot-gun for a paced
|
|
43
52
|
wake (field-confirmed): unrelated completions can wake the caller before its
|
|
44
|
-
own next job finishes. Scope `wait` with default-self,
|
|
53
|
+
own next job finishes. Scope `wait` with default-self, `I_am=`, or
|
|
45
54
|
`[teamfile]`.
|
|
46
55
|
|
|
47
56
|
## 0.1.87 — 2026-07-07
|
|
@@ -51,7 +60,7 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
|
51
60
|
a start row and a finish row; `lmctl wait` blocks on those rows and returns the
|
|
52
61
|
instant the first one in scope finishes (reporting which completed and which
|
|
53
62
|
are still running). `lmctl exec -- <command>` runs any shell command as a
|
|
54
|
-
tracked invocation, and a backgrounded `lmctl chat …
|
|
63
|
+
tracked invocation, and a backgrounded `lmctl chat … I_am="<teamfile>:Lead"`
|
|
55
64
|
is tracked the same way — so `cmd & lmctl wait` is the wake for chats and
|
|
56
65
|
arbitrary commands alike. This replaces the fragile "reserve one blocking job
|
|
57
66
|
as the wake" (N−1/1) pattern; all N launches go to the background and `wait` is
|
|
@@ -67,7 +76,7 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
|
67
76
|
phantom `running` row whose process died without writing a finish is reclaimed
|
|
68
77
|
as `error` (dead/stale holder detection) instead of hanging `wait` forever; an
|
|
69
78
|
appearance-grace poll covers the `cmd & lmctl wait` insert-lag race. Scopes:
|
|
70
|
-
default (caller, via `LMCTL_SELF_SESSIONID`),
|
|
79
|
+
default (caller, via `LMCTL_SELF_SESSIONID`), `I_am=`, `<teamfile>`; exit
|
|
71
80
|
`0` completed/idle, `1` timeout
|
|
72
81
|
(8h backstop), `2` usage. A single `idle` return means "nothing running right
|
|
73
82
|
now", not "done" — loop `wait`.
|
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 [
|
|
68
|
+
- `lmctl recv [I_am=<teamfile:alias>]` drains the calling Lead's mailbox consume-on-read.
|
|
69
69
|
|
|
70
70
|
## Model selection
|
|
71
71
|
|