@lmctl-ai/lmctl 0.1.263 → 0.1.265
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/README.md +9 -15
- package/dist/cli/index.js +943 -1055
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,13 +46,12 @@ lmctl lint ./my-project/my-project.lmctl
|
|
|
46
46
|
lmctl seed ./my-project/my-project.lmctl
|
|
47
47
|
lmctl chat ./my-project/my-project.lmctl Lead "Inspect the repo and propose next steps."
|
|
48
48
|
lmctl mail sent --json
|
|
49
|
-
lmctl mail deliver msg_mbx_123 --json
|
|
50
49
|
lmctl mail sent --limit 100 --cursor "$NEXT_CURSOR" --json
|
|
51
50
|
```
|
|
52
51
|
|
|
53
52
|
`lmctl status` is team/SELF-scoped: from a member session it shows your
|
|
54
|
-
identity, team roster busy/idle state, recent activity in both directions
|
|
55
|
-
|
|
53
|
+
identity, team roster busy/idle state, and recent activity in both directions.
|
|
54
|
+
From a plain operator shell it shows a DB-wide summary.
|
|
56
55
|
Use `lmctl status --json` for the full machine-readable view; `--project` and
|
|
57
56
|
`--web` are not status flags.
|
|
58
57
|
|
|
@@ -86,18 +85,13 @@ sqlite3 ~/.lmctl/state.db "INSERT OR REPLACE INTO lmctl_config(key,value,updated
|
|
|
86
85
|
sqlite3 ~/.lmctl/state.db "INSERT OR REPLACE INTO lmctl_config(key,value,updated_at) VALUES('workspace.provider3','gemini',strftime('%Y-%m-%dT%H:%M:%fZ','now'));"
|
|
87
86
|
```
|
|
88
87
|
|
|
89
|
-
`lmctl mail` exposes low-level primitives over the
|
|
90
|
-
pending or sent messages, read event history/
|
|
91
|
-
provider evidence and causal lineage, declare
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
session; an explicit `--receiver` overrides that scope. From a plain operator
|
|
97
|
-
shell with no SELF marker, it retains the fleet-wide discovery view.
|
|
98
|
-
Read commands stay event-substrate-only; deliver deliberately follows the
|
|
99
|
-
CREATE event's legacy mailbox-row reference into the existing live delivery
|
|
100
|
-
machinery until that write path is fully cut over.
|
|
88
|
+
`lmctl mail` exposes low-level, read-only/record-only primitives over the
|
|
89
|
+
event-log substrate: list pending or sent messages, read event history/
|
|
90
|
+
content, inspect historical provider evidence and causal lineage, and declare
|
|
91
|
+
handling/acknowledgement. `mail pending` defaults to messages addressed to
|
|
92
|
+
SELF when run from a member session; an explicit `--receiver` overrides that
|
|
93
|
+
scope. From a plain operator shell with no SELF marker, it retains the
|
|
94
|
+
fleet-wide discovery view.
|
|
101
95
|
Missing causal capture is shown as an explicit tree root rather than guessed
|
|
102
96
|
from timestamps.
|
|
103
97
|
For every `mail` subcommand, `--json` is the stable external contract and
|