@linzumi/cli 1.0.139 → 1.0.140

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linzumi/cli",
3
- "version": "1.0.139",
3
+ "version": "1.0.140",
4
4
  "description": "Linzumi CLI \u2014 point a Codex agent at the real code on your laptop, with your team watching and steering from shared threads.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,6 +33,7 @@ const packageRoot = dirname(dirname(fileURLToPath(import.meta.url)));
33
33
  const driverSource = `
34
34
  import {
35
35
  claudeCodeMcpConfigJson,
36
+ claudeCodeSdkMcpServers,
36
37
  codexMcpConfigArgs,
37
38
  codexMcpConfigToml,
38
39
  linzumiMcpCommandForProcess,
@@ -199,6 +200,9 @@ async function handle(testCase) {
199
200
  codexArgs: outcome(() => codexMcpConfigArgs(config.value)),
200
201
  codexToml: outcome(() => codexMcpConfigToml(config.value)),
201
202
  claudeCodeJson: outcome(() => claudeCodeMcpConfigJson(config.value)),
203
+ claudeSdkMcpServers: outcome(() =>
204
+ claudeCodeSdkMcpServers(config.value)
205
+ ),
202
206
  };
203
207
  }
204
208
  case 'commandForProcess':