@lmctl-ai/lmctl 0.1.263 → 0.1.264

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.
Files changed (3) hide show
  1. package/README.md +9 -15
  2. package/dist/cli/index.js +941 -1055
  3. 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, and
55
- pending mailbox lanes. From a plain operator shell it shows a DB-wide summary.
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 event-log substrate: list
90
- pending or sent messages, read event history/content, inspect historical
91
- provider evidence and causal lineage, declare handling/acknowledgement, and
92
- deliver one specifically addressed queued message. A `mail deliver` call is
93
- one provider turn for only that message; same-lane messages stay queued for
94
- separate calls, leaving ordering and retry policy to the external consumer.
95
- `mail pending` defaults to messages addressed to SELF when run from a member
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