@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/README.md +1 -1
- package/dist/impl-res/cloud-supervisor.mjs +7 -7
- package/dist/impl-res/index.js +116 -110
- package/dist/impl-ts/cloud-supervisor.mjs +7 -7
- package/dist/impl-ts/index.js +339 -339
- package/package.json +1 -1
- package/scripts/build-mcp-parity-oracle.mjs +4 -0
package/package.json
CHANGED
|
@@ -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':
|