@lmctl-ai/lmctl 0.1.88 → 0.1.89
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 +8 -0
- package/README.md +4 -1
- package/dist/cli/index.js +587 -526
- package/dist/cli/schema.sql +22 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
4
4
|
|
|
5
|
+
## 0.1.89 — 2026-07-08
|
|
6
|
+
|
|
7
|
+
- **`agent_mailbox`: async Lead-to-Lead messaging.** New `lmctl send` drops a
|
|
8
|
+
message into another Lead's mailbox, and `lmctl recv` drains the receiver's
|
|
9
|
+
mailbox consume-on-read. `lmctl wait` now also wakes on inbound mail by
|
|
10
|
+
peeking the mailbox read-only, so a receiver can be woken without consuming
|
|
11
|
+
the message. `lmctl chat` is unchanged; `send`/`recv` and `chat` coexist.
|
|
12
|
+
|
|
5
13
|
## 0.1.88 — 2026-07-08
|
|
6
14
|
|
|
7
15
|
- **Removed `lmctl wait --all`.** System-wide scope is a foot-gun for a paced
|
package/README.md
CHANGED
|
@@ -57,13 +57,16 @@ onboarding.
|
|
|
57
57
|
Lintable teamfile templates for research, writing, and review teams ship in the
|
|
58
58
|
[examples gallery](https://lmctl.com/examples/).
|
|
59
59
|
|
|
60
|
-
`lmctl` top-level subcommands are: `api`, `chat`, `loop`, `code`, `serve`, `intake`,
|
|
60
|
+
`lmctl` top-level subcommands are: `api`, `chat`, `send`, `recv`, `loop`, `code`, `serve`, `intake`,
|
|
61
61
|
`mcp`, `monitor`, `device`, `team`, `terminal`, `tail`, `health`, `wait`,
|
|
62
62
|
`exec`, `recover`, `ls`, `lint`, `seed`, `hire`, `refresh`, `clone`, `plan`, `workflow`,
|
|
63
63
|
`run`, `project`, `workspace`, `diagnose`, `diagnose-prompt`, `status`, and
|
|
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 an async mailbox message to another Lead.
|
|
68
|
+
- `lmctl recv [--from <teamfile:alias>]` drains the calling Lead's mailbox consume-on-read.
|
|
69
|
+
|
|
67
70
|
## Model selection
|
|
68
71
|
|
|
69
72
|
Teamfiles can pin provider models with `_MEMBER_ ... model=<id>`. For
|