@lmctl-ai/lmctl 0.1.93 → 0.1.95
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 +31 -1
- package/README.md +1 -1
- package/dist/cli/index.js +573 -528
- package/dist/cli/schema.sql +2 -2
- package/package.json +1 -1
package/dist/cli/schema.sql
CHANGED
|
@@ -603,8 +603,8 @@ 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,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmctl-ai/lmctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.95",
|
|
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",
|