@lmctl-ai/lmctl 0.1.290 → 0.1.292
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/dist/cli/index.js +526 -523
- package/dist/cli/schema.sql +5 -1
- package/package.json +1 -1
package/dist/cli/schema.sql
CHANGED
|
@@ -731,7 +731,11 @@ CREATE TABLE IF NOT EXISTS tracked_invocation (
|
|
|
731
731
|
notified_by TEXT,
|
|
732
732
|
notified_at TEXT,
|
|
733
733
|
launch_source TEXT,
|
|
734
|
-
request_payload TEXT
|
|
734
|
+
request_payload TEXT,
|
|
735
|
+
-- v58: dispatch-lineage edge for `lmctl running --tree` -- the id of the
|
|
736
|
+
-- tracked_invocation whose turn sent the message that triggered this one.
|
|
737
|
+
-- Null = a root (not itself triggered by another tracked turn).
|
|
738
|
+
parent_invocation_id INTEGER
|
|
735
739
|
);
|
|
736
740
|
CREATE INDEX IF NOT EXISTS idx_tracked_invocation_status_started
|
|
737
741
|
ON tracked_invocation(status, started_at);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmctl-ai/lmctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.292",
|
|
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",
|