@lmctl-ai/lmctl 0.1.61 → 0.1.62
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 +474 -457
- package/dist/cli/schema.sql +2 -1
- package/package.json +1 -1
package/dist/cli/schema.sql
CHANGED
|
@@ -671,7 +671,8 @@ CREATE TABLE IF NOT EXISTS delegation_job (
|
|
|
671
671
|
team_chat_log_id INTEGER REFERENCES team_chat_log(id),
|
|
672
672
|
attempt_count INTEGER NOT NULL DEFAULT 0,
|
|
673
673
|
permission_mode TEXT,
|
|
674
|
-
idle_timeout_ms INTEGER
|
|
674
|
+
idle_timeout_ms INTEGER,
|
|
675
|
+
delivered_at TEXT
|
|
675
676
|
);
|
|
676
677
|
CREATE INDEX IF NOT EXISTS idx_delegation_job_status_created
|
|
677
678
|
ON delegation_job(status, created_at DESC);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmctl-ai/lmctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.62",
|
|
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",
|