@lmctl-ai/lmctl 0.1.220 → 0.1.221
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 +549 -490
- package/dist/cli/schema.sql +1 -1
- package/package.json +1 -1
package/dist/cli/schema.sql
CHANGED
|
@@ -716,7 +716,7 @@ CREATE TABLE IF NOT EXISTS tracked_invocation (
|
|
|
716
716
|
root_teamfile TEXT,
|
|
717
717
|
cwd TEXT,
|
|
718
718
|
command TEXT,
|
|
719
|
-
status TEXT NOT NULL CHECK(status IN ('running', 'done', 'error', 'busy', 'cancelled')),
|
|
719
|
+
status TEXT NOT NULL CHECK(status IN ('running', 'done', 'error', 'busy', 'cancelled', 'aborted')),
|
|
720
720
|
started_at TEXT NOT NULL,
|
|
721
721
|
ended_at TEXT,
|
|
722
722
|
holder_pid INTEGER,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmctl-ai/lmctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.221",
|
|
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",
|