@lmctl-ai/lmctl 0.1.21 → 0.1.23
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/README.md +18 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,9 +6,24 @@
|
|
|
6
6
|
|
|
7
7
|
AI agents shouldn't be locked to one provider, one workflow, or one context
|
|
8
8
|
window. **lmctl** is a local-first control plane for running *teams* of AI coding
|
|
9
|
-
agents — across providers, with
|
|
10
|
-
in plain text. It coordinates the agent CLIs you already use
|
|
11
|
-
Gemini, and more); it's not an IDE and not another chatbot.
|
|
9
|
+
agents — across providers, with adversarial cross-provider review and durable
|
|
10
|
+
memory, composed in plain text. It coordinates the agent CLIs you already use
|
|
11
|
+
(Claude, Codex, Gemini, and more); it's not an IDE and not another chatbot.
|
|
12
|
+
|
|
13
|
+
Two things set it apart from how "multi-agent" and "AI review" usually work:
|
|
14
|
+
|
|
15
|
+
- **Review is adversarial, not self-review.** The reviewer is a different
|
|
16
|
+
provider *and* model from the author — a Claude lead hands coding to Codex and
|
|
17
|
+
has Gemini review it — so a model's blind spots aren't rubber-stamped by
|
|
18
|
+
itself in a different hat.
|
|
19
|
+
- **You build and tune the team — the provider doesn't.** Most "multi-agent"
|
|
20
|
+
tools have one provider auto-spawn agents you can't steer. In lmctl you divide
|
|
21
|
+
the work, compose the team in plain text, pick the provider and model for each
|
|
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.
|
|
12
27
|
|
|
13
28
|
> **Public preview.** Free to use during the preview. Closed-source, proprietary
|
|
14
29
|
> software distributed in binary form — see the [License](https://lmctl.com/lmctl/docs/license).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmctl-ai/lmctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
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",
|