@lmctl-ai/lmctl 0.1.95 → 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 +13 -0
- package/dist/cli/index.js +491 -487
- package/dist/cli/schema.sql +1 -0
- 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,
|
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",
|