@lmctl-ai/lmctl 0.1.166 → 0.1.168

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.
@@ -9,7 +9,10 @@ For `.lmctl` teamfile compatibility mode:
9
9
  - `opencode` model validation reads configured models from
10
10
  `~/.config/opencode/opencode.json` and WARNS (never injects) when a
11
11
  `model=` isn't declared there and isn't a config-free github-copilot
12
- GPT/Gemini/o-series id. See the `## OpenCode` section below.
12
+ GPT/Gemini/o-series id. When `model=` is present, `lmctl lint` also
13
+ opens a short-lived ACP session and asks opencode itself to validate
14
+ `model=` and `effort=`. It never sends a prompt. See the `## OpenCode`
15
+ section below.
13
16
  - `copilot` accepts `model=` syntactically, but model selection is not
14
17
  supported and lint warns that the value is ignored.
15
18
  - `lmctl seed <teamfile>` passes `model=` through to the provider seed
@@ -120,6 +123,14 @@ the sample's Claude/GPT entries with `variants: { high, xhigh, max }`); on the A
120
123
  chat path lmctl sends `session/set_config_option` with `configId: "model"` and
121
124
  `configId: "effort"` before `session/prompt`.
122
125
 
126
+ For each opencode member with `model=`, `lmctl lint` runs the same ACP
127
+ initialization and config-option calls, then exits before `session/prompt`. A
128
+ provider rejection text is preserved inside an `ACP RPC error:` diagnostic so
129
+ lint reflects opencode's live catalog and validation rules. If the local binary
130
+ cannot start, complete its handshake, or respond before the probe timeout, lint
131
+ skips this live check without treating the environment problem as a teamfile
132
+ error.
133
+
123
134
  Example:
124
135
 
125
136
  ```md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lmctl-ai/lmctl",
3
- "version": "0.1.166",
3
+ "version": "0.1.168",
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",