@lmctl-ai/lmctl 0.1.23 → 0.1.24

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.
@@ -599,16 +599,6 @@ CREATE TABLE IF NOT EXISTS root_team (
599
599
  last_seeded_at TEXT
600
600
  );
601
601
 
602
- -- Cross-team connection snapshot (from _CONNECT_), captured at seed
603
- CREATE TABLE IF NOT EXISTS team_connection (
604
- id INTEGER PRIMARY KEY AUTOINCREMENT,
605
- source_teamfile TEXT NOT NULL,
606
- target_name TEXT NOT NULL,
607
- target_teamfile TEXT NOT NULL,
608
- created_at TEXT NOT NULL,
609
- UNIQUE(source_teamfile, target_name, target_teamfile)
610
- );
611
-
612
602
  -- One row per request->response exchange
613
603
  CREATE TABLE IF NOT EXISTS team_chat_log (
614
604
  id INTEGER PRIMARY KEY AUTOINCREMENT,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lmctl-ai/lmctl",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
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",