@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/dist/cli/schema.sql
CHANGED
|
@@ -736,3 +736,25 @@ CREATE INDEX IF NOT EXISTS idx_tracked_invocation_scope_status_started
|
|
|
736
736
|
ON tracked_invocation(scope_teamfile, status, started_at);
|
|
737
737
|
CREATE INDEX IF NOT EXISTS idx_tracked_invocation_status_ended
|
|
738
738
|
ON tracked_invocation(status, ended_at);
|
|
739
|
+
|
|
740
|
+
-- v45: async Lead mailbox. Consume-on-read; rows present here are pending.
|
|
741
|
+
CREATE TABLE IF NOT EXISTS agent_mailbox (
|
|
742
|
+
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
743
|
+
receiver_teamfile TEXT NOT NULL,
|
|
744
|
+
receiver_alias TEXT NOT NULL,
|
|
745
|
+
sender_teamfile TEXT,
|
|
746
|
+
sender_alias TEXT,
|
|
747
|
+
root_teamfile TEXT,
|
|
748
|
+
payload TEXT NOT NULL,
|
|
749
|
+
created_at TEXT NOT NULL,
|
|
750
|
+
remote_transport TEXT,
|
|
751
|
+
remote_message_id TEXT,
|
|
752
|
+
remote_thread_id TEXT,
|
|
753
|
+
meta TEXT
|
|
754
|
+
);
|
|
755
|
+
CREATE INDEX IF NOT EXISTS idx_agent_mailbox_receiver_id
|
|
756
|
+
ON agent_mailbox(receiver_teamfile, receiver_alias, id);
|
|
757
|
+
CREATE INDEX IF NOT EXISTS idx_agent_mailbox_sender_created
|
|
758
|
+
ON agent_mailbox(sender_teamfile, sender_alias, created_at);
|
|
759
|
+
CREATE INDEX IF NOT EXISTS idx_agent_mailbox_created
|
|
760
|
+
ON agent_mailbox(created_at);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmctl-ai/lmctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.89",
|
|
4
4
|
"description": "A provider-agnostic control plane for teams of AI coding agents — across providers, with independent review and durable memory.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://lmctl.com",
|