@lmctl-ai/lmctl 0.1.22 → 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.
- package/CHANGELOG.md +5 -0
- package/README.md +4 -0
- package/dist/cli/index.js +492 -531
- package/dist/cli/schema.sql +0 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
- Removed static `_CONNECT_` cross-team routing and the `lmctl connect` command.
|
|
8
|
+
Legacy `_CONNECT_` lines now parse as deprecated no-ops with a lint warning,
|
|
9
|
+
cross-team Lead sends work at runtime without predeclared edges, runtime
|
|
10
|
+
cycle protection uses `team_chat_log` + `agent_inflight`, and migration v38
|
|
11
|
+
drops the retired `team_connection` table.
|
|
7
12
|
- Replaced native `better-sqlite3` with built-in `node:sqlite`; Node >=24.15.0
|
|
8
13
|
is now required and npm install no longer has a native SQLite build step.
|
|
9
14
|
- Added `provider=opencode` model-effort selection with `_MEMBER_ ... model=<id> effort=<variant>`.
|
package/README.md
CHANGED
|
@@ -20,6 +20,10 @@ Two things set it apart from how "multi-agent" and "AI review" usually work:
|
|
|
20
20
|
tools have one provider auto-spawn agents you can't steer. In lmctl you divide
|
|
21
21
|
the work, compose the team in plain text, pick the provider and model for each
|
|
22
22
|
role, and tune how they interact.
|
|
23
|
+
- **Any model, local or remote — any mix in one team.** Alongside the major CLIs,
|
|
24
|
+
the OpenCode provider reaches any model: local (Ollama) or remote (DeepSeek,
|
|
25
|
+
Qwen, OpenRouter, Copilot's GPT/Claude/Gemini, and more). Put any collection of
|
|
26
|
+
them in a single team, working together — not one model at a time.
|
|
23
27
|
|
|
24
28
|
> **Public preview.** Free to use during the preview. Closed-source, proprietary
|
|
25
29
|
> software distributed in binary form — see the [License](https://lmctl.com/lmctl/docs/license).
|