@lmctl-ai/lmctl 0.1.91 → 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 +24 -10
- package/README.md +1 -1
- package/dist/cli/index.js +598 -603
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
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
|
+
|
|
14
|
+
## 0.1.92 — 2026-07-08
|
|
15
|
+
|
|
16
|
+
- **Retired `_SKILL_` downloads.** Legacy teamfile `_SKILL_` lines are
|
|
17
|
+
silently ignored for back-compat: `seed` no longer fetches or writes
|
|
18
|
+
`durable-memory/skills/`, and `plan` points at one core Lead skill link
|
|
19
|
+
instead of generating skill-download directives.
|
|
20
|
+
|
|
5
21
|
## 0.1.91 — 2026-07-08
|
|
6
22
|
|
|
7
23
|
- **Removed `lmctl wait --id`.** `wait` is an interactive first-return primitive over the caller's queue (id-handshake retired).
|
|
@@ -34,8 +50,8 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
|
34
50
|
|
|
35
51
|
- **Removed `lmctl wait --all`.** System-wide scope is a foot-gun for a paced
|
|
36
52
|
wake (field-confirmed): unrelated completions can wake the caller before its
|
|
37
|
-
own next job finishes. Scope `wait` with default-self,
|
|
38
|
-
|
|
53
|
+
own next job finishes. Scope `wait` with default-self, `I_am=`, or
|
|
54
|
+
`[teamfile]`.
|
|
39
55
|
|
|
40
56
|
## 0.1.87 — 2026-07-07
|
|
41
57
|
|
|
@@ -44,7 +60,7 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
|
44
60
|
a start row and a finish row; `lmctl wait` blocks on those rows and returns the
|
|
45
61
|
instant the first one in scope finishes (reporting which completed and which
|
|
46
62
|
are still running). `lmctl exec -- <command>` runs any shell command as a
|
|
47
|
-
tracked invocation, and a backgrounded `lmctl chat …
|
|
63
|
+
tracked invocation, and a backgrounded `lmctl chat … I_am="<teamfile>:Lead"`
|
|
48
64
|
is tracked the same way — so `cmd & lmctl wait` is the wake for chats and
|
|
49
65
|
arbitrary commands alike. This replaces the fragile "reserve one blocking job
|
|
50
66
|
as the wake" (N−1/1) pattern; all N launches go to the background and `wait` is
|
|
@@ -59,10 +75,9 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
|
59
75
|
- **`wait` is robust against the failure modes of a fire-and-forget loop.** A
|
|
60
76
|
phantom `running` row whose process died without writing a finish is reclaimed
|
|
61
77
|
as `error` (dead/stale holder detection) instead of hanging `wait` forever; an
|
|
62
|
-
appearance-grace poll covers the `cmd & lmctl wait` insert-lag race
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
`--from`, `<teamfile>`, `--all`, `--id`; exit `0` completed/idle, `1` timeout
|
|
78
|
+
appearance-grace poll covers the `cmd & lmctl wait` insert-lag race. Scopes:
|
|
79
|
+
default (caller, via `LMCTL_SELF_SESSIONID`), `I_am=`, `<teamfile>`; exit
|
|
80
|
+
`0` completed/idle, `1` timeout
|
|
66
81
|
(8h backstop), `2` usage. A single `idle` return means "nothing running right
|
|
67
82
|
now", not "done" — loop `wait`.
|
|
68
83
|
|
|
@@ -113,9 +128,8 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
|
113
128
|
- **MCP install retired.** lmctl no longer writes provider MCP config on
|
|
114
129
|
seed/chat (the internal `lmctl_chat` code remains; only the installation is
|
|
115
130
|
removed).
|
|
116
|
-
- **
|
|
117
|
-
|
|
118
|
-
`_SKILL_ <url>` into `durable-memory/skills/` on seed.
|
|
131
|
+
- **Legacy network-skill experiment.** The default teamfile template once pulled
|
|
132
|
+
shared skills from lmctl.com into `durable-memory/skills/` on seed.
|
|
119
133
|
- **`effort=` advisory for `provider=qwen`.** Qwen Code exposes no reasoning-effort
|
|
120
134
|
CLI flag, so lint points you to a thinking/effort model id instead of
|
|
121
135
|
mis-warning that effort is ignored.
|
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
|
|