@lmctl-ai/lmctl 0.1.96 → 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 +20 -0
- package/README.md +2 -2
- package/dist/cli/index.js +553 -526
- package/dist/cli/schema.sql +6 -2
- package/package.json +1 -1
package/dist/cli/schema.sql
CHANGED
|
@@ -727,7 +727,9 @@ CREATE TABLE IF NOT EXISTS tracked_invocation (
|
|
|
727
727
|
result_summary TEXT,
|
|
728
728
|
error TEXT,
|
|
729
729
|
team_chat_log_id INTEGER,
|
|
730
|
-
meta TEXT
|
|
730
|
+
meta TEXT,
|
|
731
|
+
notified_by TEXT,
|
|
732
|
+
notified_at TEXT
|
|
731
733
|
);
|
|
732
734
|
CREATE INDEX IF NOT EXISTS idx_tracked_invocation_status_started
|
|
733
735
|
ON tracked_invocation(status, started_at);
|
|
@@ -751,7 +753,9 @@ CREATE TABLE IF NOT EXISTS agent_mailbox (
|
|
|
751
753
|
remote_transport TEXT,
|
|
752
754
|
remote_message_id TEXT,
|
|
753
755
|
remote_thread_id TEXT,
|
|
754
|
-
meta TEXT
|
|
756
|
+
meta TEXT,
|
|
757
|
+
delivered_at TEXT,
|
|
758
|
+
receipt TEXT
|
|
755
759
|
);
|
|
756
760
|
CREATE INDEX IF NOT EXISTS idx_agent_mailbox_receiver_id
|
|
757
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",
|