@lmctl-ai/lmctl 0.1.17 → 0.1.19
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 +2 -0
- package/README.md +34 -23
- package/dist/cli/index.js +445 -445
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,8 @@ All notable public-preview changes for `@lmctl-ai/lmctl` are recorded here.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
- Replaced native `better-sqlite3` with built-in `node:sqlite`; Node >=24.15.0
|
|
8
|
+
is now required and npm install no longer has a native SQLite build step.
|
|
7
9
|
- Added `provider=opencode` model-effort selection with `_MEMBER_ ... model=<id> effort=<variant>`.
|
|
8
10
|
- Chat/MCP path: sends opencode ACP `session/set_config_option` for `model`, then `effort`.
|
|
9
11
|
- Seed path: uses `opencode run --model <id> --variant <effort>`.
|
package/README.md
CHANGED
|
@@ -1,55 +1,66 @@
|
|
|
1
1
|
# lmctl
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
agent workflows.
|
|
3
|
+
> A provider-agnostic control plane for teams of AI coding agents.
|
|
5
4
|
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
[Homepage](https://lmctl.com) · [Documentation](https://lmctl.com/lmctl) · [Changelog](https://lmctl.com/lmctl/docs/changelog)
|
|
6
|
+
|
|
7
|
+
AI agents shouldn't be locked to one provider, one workflow, or one context
|
|
8
|
+
window. **lmctl** is a local-first control plane for running *teams* of AI coding
|
|
9
|
+
agents — across providers, with independent review and durable memory, composed
|
|
10
|
+
in plain text. It coordinates the agent CLIs you already use (Claude, Codex,
|
|
11
|
+
Gemini, and more); it's not an IDE and not another chatbot.
|
|
12
|
+
|
|
13
|
+
> **Public preview.** Free to use during the preview. Closed-source, proprietary
|
|
14
|
+
> software distributed in binary form — see the [License](https://lmctl.com/lmctl/docs/license).
|
|
8
15
|
|
|
9
16
|
## Install
|
|
10
17
|
|
|
11
18
|
```sh
|
|
12
|
-
npm install -g lmctl
|
|
19
|
+
npm install -g @lmctl-ai/lmctl
|
|
13
20
|
```
|
|
14
21
|
|
|
15
22
|
## Usage
|
|
16
23
|
|
|
17
24
|
```sh
|
|
18
25
|
lmctl --help
|
|
19
|
-
lmctl workflow --help
|
|
20
26
|
lmctl status
|
|
27
|
+
lmctl run https://lmctl.com/workflows/research.compound.json
|
|
21
28
|
```
|
|
22
29
|
|
|
23
|
-
`lmctl` provides subcommands including `api`, `chat`, `code`, `serve`,
|
|
24
|
-
`
|
|
25
|
-
`
|
|
26
|
-
|
|
30
|
+
`lmctl` provides subcommands including `api`, `chat`, `code`, `serve`, `intake`,
|
|
31
|
+
`mcp`, `monitor`, `team`, `workflow`, `project`, `workspace`, `diagnose`, `init`,
|
|
32
|
+
`status`, and `db`. Run `lmctl <command> --help` for details on each, and see the
|
|
33
|
+
[documentation](https://lmctl.com/lmctl) to define your first team.
|
|
27
34
|
|
|
28
35
|
## Model selection
|
|
29
36
|
|
|
30
|
-
Teamfiles can pin provider models with `_MEMBER_ ... model=<id>`.
|
|
31
|
-
|
|
32
|
-
|
|
37
|
+
Teamfiles can pin provider models with `_MEMBER_ ... model=<id>`. For
|
|
38
|
+
`provider=opencode`, GitHub Copilot reasoning variants can also be selected with
|
|
39
|
+
`effort=<variant>`, for example:
|
|
33
40
|
|
|
34
41
|
```md
|
|
35
42
|
_MEMBER_ alias=Reviewer provider=opencode model=github-copilot/gpt-5.4 effort=xhigh sessiondir=/repo
|
|
36
43
|
```
|
|
37
44
|
|
|
38
|
-
If `~/.config/opencode/opencode.json` is missing, `lmctl lint` warns and
|
|
39
|
-
|
|
40
|
-
Copy
|
|
41
|
-
|
|
45
|
+
If `~/.config/opencode/opencode.json` is missing, `lmctl lint` warns and points
|
|
46
|
+
to [this sample config](https://lmctl.com/examples/opencode.github-copilot.json).
|
|
47
|
+
Copy it into your opencode config location and adjust it for the models your
|
|
48
|
+
account can access.
|
|
42
49
|
|
|
43
50
|
## Requirements
|
|
44
51
|
|
|
45
|
-
- Node.js >=
|
|
52
|
+
- Node.js >= 24.15.0. lmctl uses built-in `node:sqlite`, so installation has
|
|
53
|
+
no native SQLite build step.
|
|
46
54
|
|
|
47
|
-
##
|
|
55
|
+
## Links
|
|
48
56
|
|
|
49
|
-
|
|
57
|
+
- Homepage: <https://lmctl.com>
|
|
58
|
+
- Documentation: <https://lmctl.com/lmctl>
|
|
59
|
+
- Changelog: <https://lmctl.com/lmctl/docs/changelog>
|
|
60
|
+
- License: <https://lmctl.com/lmctl/docs/license>
|
|
50
61
|
|
|
51
62
|
## License
|
|
52
63
|
|
|
53
|
-
Proprietary — free during the public preview
|
|
54
|
-
redistribution or modification.
|
|
55
|
-
without warranty.
|
|
64
|
+
Proprietary — free during the public preview, © Lattice Systems LLC, all rights
|
|
65
|
+
reserved. Not licensed for redistribution or modification. Provided as-is,
|
|
66
|
+
without warranty. See the full [License](https://lmctl.com/lmctl/docs/license).
|