@lmctl-ai/lmctl 0.1.95 → 0.1.97
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 +33 -0
- package/README.md +2 -2
- package/dist/cli/index.js +590 -559
- package/dist/cli/schema.sql +7 -2
- package/package.json +1 -1
package/dist/cli/schema.sql
CHANGED
|
@@ -609,6 +609,7 @@ CREATE TABLE IF NOT EXISTS team_chat_log (
|
|
|
609
609
|
receiver_alias TEXT NOT NULL,
|
|
610
610
|
message TEXT NOT NULL,
|
|
611
611
|
response TEXT,
|
|
612
|
+
origin TEXT NOT NULL CHECK(origin IN ('agent','operator','mcp','unknown')),
|
|
612
613
|
status TEXT NOT NULL,
|
|
613
614
|
error_detail TEXT,
|
|
614
615
|
truncated INTEGER NOT NULL DEFAULT 0,
|
|
@@ -726,7 +727,9 @@ CREATE TABLE IF NOT EXISTS tracked_invocation (
|
|
|
726
727
|
result_summary TEXT,
|
|
727
728
|
error TEXT,
|
|
728
729
|
team_chat_log_id INTEGER,
|
|
729
|
-
meta TEXT
|
|
730
|
+
meta TEXT,
|
|
731
|
+
notified_by TEXT,
|
|
732
|
+
notified_at TEXT
|
|
730
733
|
);
|
|
731
734
|
CREATE INDEX IF NOT EXISTS idx_tracked_invocation_status_started
|
|
732
735
|
ON tracked_invocation(status, started_at);
|
|
@@ -750,7 +753,9 @@ CREATE TABLE IF NOT EXISTS agent_mailbox (
|
|
|
750
753
|
remote_transport TEXT,
|
|
751
754
|
remote_message_id TEXT,
|
|
752
755
|
remote_thread_id TEXT,
|
|
753
|
-
meta TEXT
|
|
756
|
+
meta TEXT,
|
|
757
|
+
delivered_at TEXT,
|
|
758
|
+
receipt TEXT
|
|
754
759
|
);
|
|
755
760
|
CREATE INDEX IF NOT EXISTS idx_agent_mailbox_receiver_id
|
|
756
761
|
ON agent_mailbox(receiver_teamfile, receiver_alias, 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.97",
|
|
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",
|