@lmctl-ai/lmctl 0.1.94 → 0.1.96
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 +32 -0
- package/README.md +1 -1
- package/dist/cli/index.js +564 -512
- package/dist/cli/schema.sql +3 -2
- package/package.json +1 -1
package/dist/cli/schema.sql
CHANGED
|
@@ -603,12 +603,13 @@ CREATE TABLE IF NOT EXISTS root_team (
|
|
|
603
603
|
CREATE TABLE IF NOT EXISTS team_chat_log (
|
|
604
604
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
605
605
|
root_teamfile TEXT NOT NULL,
|
|
606
|
-
sender_teamfile TEXT
|
|
607
|
-
sender_alias TEXT
|
|
606
|
+
sender_teamfile TEXT,
|
|
607
|
+
sender_alias TEXT,
|
|
608
608
|
receiver_teamfile TEXT NOT NULL,
|
|
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,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmctl-ai/lmctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.96",
|
|
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",
|