@lmctl-ai/lmctl 0.1.98 → 0.1.100
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 +27 -0
- package/dist/cli/index.js +578 -494
- package/dist/cli/schema.sql +10 -1
- package/package.json +1 -1
package/dist/cli/schema.sql
CHANGED
|
@@ -755,7 +755,12 @@ CREATE TABLE IF NOT EXISTS agent_mailbox (
|
|
|
755
755
|
remote_thread_id TEXT,
|
|
756
756
|
meta TEXT,
|
|
757
757
|
delivered_at TEXT,
|
|
758
|
-
receipt TEXT
|
|
758
|
+
receipt TEXT,
|
|
759
|
+
delivering_at TEXT,
|
|
760
|
+
delivery_holder_pid INTEGER,
|
|
761
|
+
delivery_holder_host TEXT,
|
|
762
|
+
waited_at TEXT,
|
|
763
|
+
waited_by TEXT
|
|
759
764
|
);
|
|
760
765
|
CREATE INDEX IF NOT EXISTS idx_agent_mailbox_receiver_id
|
|
761
766
|
ON agent_mailbox(receiver_teamfile, receiver_alias, id);
|
|
@@ -763,3 +768,7 @@ CREATE INDEX IF NOT EXISTS idx_agent_mailbox_sender_created
|
|
|
763
768
|
ON agent_mailbox(sender_teamfile, sender_alias, created_at);
|
|
764
769
|
CREATE INDEX IF NOT EXISTS idx_agent_mailbox_created
|
|
765
770
|
ON agent_mailbox(created_at);
|
|
771
|
+
CREATE INDEX IF NOT EXISTS idx_agent_mailbox_sender_delivery_wait
|
|
772
|
+
ON agent_mailbox(sender_teamfile, sender_alias, delivered_at, waited_at, id);
|
|
773
|
+
CREATE INDEX IF NOT EXISTS idx_agent_mailbox_lane_delivery
|
|
774
|
+
ON agent_mailbox(sender_teamfile, sender_alias, receiver_teamfile, receiver_alias, delivered_at, delivering_at, id);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmctl-ai/lmctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.100",
|
|
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",
|