@lmctl-ai/lmctl 0.1.57 → 0.1.59
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 +540 -503
- package/dist/cli/schema.sql +3 -1
- package/package.json +1 -1
package/dist/cli/schema.sql
CHANGED
|
@@ -669,7 +669,9 @@ CREATE TABLE IF NOT EXISTS delegation_job (
|
|
|
669
669
|
result_text TEXT,
|
|
670
670
|
error TEXT,
|
|
671
671
|
team_chat_log_id INTEGER REFERENCES team_chat_log(id),
|
|
672
|
-
attempt_count INTEGER NOT NULL DEFAULT 0
|
|
672
|
+
attempt_count INTEGER NOT NULL DEFAULT 0,
|
|
673
|
+
permission_mode TEXT,
|
|
674
|
+
idle_timeout_ms INTEGER
|
|
673
675
|
);
|
|
674
676
|
CREATE INDEX IF NOT EXISTS idx_delegation_job_status_created
|
|
675
677
|
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.59",
|
|
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",
|