@linzumi/cli 1.0.185 → 1.0.186
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 +5 -5
- package/dist/impl-res/index.js +98 -98
- package/dist/impl-res/mcp-server.mjs +32 -32
- package/dist/impl-ts/cloud-supervisor.mjs +5 -5
- package/dist/impl-ts/index.js +438 -438
- package/dist/impl-ts/mcp-server.mjs +31 -31
- package/dist/mcp-server.mjs +31 -31
- package/package.json +1 -1
- package/scripts/build-auth-parity-oracle.mjs +1 -0
- package/scripts/build-mcp-parity-oracle.mjs +1 -0
- package/scripts/build-worker-spawn-parity-oracle.mjs +1 -0
package/package.json
CHANGED
|
@@ -521,6 +521,7 @@ function handleMintMcpAuthFile(testCase) {
|
|
|
521
521
|
kandanUrl: testCase.kandanUrl,
|
|
522
522
|
token: testCase.token,
|
|
523
523
|
linzumiAgentMcpToken: testCase.linzumiAgentMcpToken ?? undefined,
|
|
524
|
+
codingJobMcpToken: testCase.codingJobMcpToken ?? undefined,
|
|
524
525
|
})
|
|
525
526
|
)
|
|
526
527
|
);
|
|
@@ -157,6 +157,7 @@ async function toolSurface(testCase) {
|
|
|
157
157
|
defaultThreadId: testCase.options.defaultThreadId ?? undefined,
|
|
158
158
|
ownerUsername: testCase.options.ownerUsername ?? undefined,
|
|
159
159
|
agentSession: testCase.options.agentSession === true,
|
|
160
|
+
multiAgentJobs: testCase.options.multiAgentJobs === true,
|
|
160
161
|
devServices:
|
|
161
162
|
testCase.options.devServices === undefined || testCase.options.devServices === null
|
|
162
163
|
? undefined
|
|
@@ -575,6 +575,7 @@ async function handleParseWorkerArgs(testCase) {
|
|
|
575
575
|
runtimeDefaults: options.runtimeDefaults ?? null,
|
|
576
576
|
codexModelProvider: options.codexModelProvider ?? null,
|
|
577
577
|
linzumiAgentMcpToken: options.linzumiAgentMcpToken ?? null,
|
|
578
|
+
codingJobMcpToken: options.codingJobMcpToken ?? null,
|
|
578
579
|
kandanThreadId: options.threadProcess?.kandanThreadId ?? null,
|
|
579
580
|
debugTrace: options.debugTrace ?? null,
|
|
580
581
|
},
|