@lmctl-ai/lmctl 0.1.17 → 0.1.18
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 +32 -22
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,55 +1,65 @@
|
|
|
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
52
|
- Node.js >= 20
|
|
46
53
|
|
|
47
|
-
##
|
|
54
|
+
## Links
|
|
48
55
|
|
|
49
|
-
|
|
56
|
+
- Homepage: <https://lmctl.com>
|
|
57
|
+
- Documentation: <https://lmctl.com/lmctl>
|
|
58
|
+
- Changelog: <https://lmctl.com/lmctl/docs/changelog>
|
|
59
|
+
- License: <https://lmctl.com/lmctl/docs/license>
|
|
50
60
|
|
|
51
61
|
## License
|
|
52
62
|
|
|
53
|
-
Proprietary — free during the public preview
|
|
54
|
-
redistribution or modification.
|
|
55
|
-
without warranty.
|
|
63
|
+
Proprietary — free during the public preview, © Lattice Systems LLC, all rights
|
|
64
|
+
reserved. Not licensed for redistribution or modification. Provided as-is,
|
|
65
|
+
without warranty. See the full [License](https://lmctl.com/lmctl/docs/license).
|
package/package.json
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmctl-ai/lmctl",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.18",
|
|
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
|
+
"homepage": "https://lmctl.com",
|
|
7
|
+
"author": "Lattice Systems LLC",
|
|
6
8
|
"bin": {
|
|
7
9
|
"lmctl": "bin/lmctl"
|
|
8
10
|
},
|